GET api/General/Home/GetBizCategoryList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of BCategoryDD
NameDescriptionTypeAdditional information
BusinessCategoryID

integer

None.

BusinessCategoryName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "BusinessCategoryID": 1,
    "BusinessCategoryName": "sample string 2"
  },
  {
    "BusinessCategoryID": 1,
    "BusinessCategoryName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBCategoryDD xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operations.CustomModels">
  <BCategoryDD>
    <BusinessCategoryID>1</BusinessCategoryID>
    <BusinessCategoryName>sample string 2</BusinessCategoryName>
  </BCategoryDD>
  <BCategoryDD>
    <BusinessCategoryID>1</BusinessCategoryID>
    <BusinessCategoryName>sample string 2</BusinessCategoryName>
  </BCategoryDD>
</ArrayOfBCategoryDD>