GET api/BusinessCategories?accountId={accountId}

Retrieves a list of Business Categories associated with the account with the specified id.
Possible Service Responses:
200/OK - match found and business category records are in the body of the response.
404/Account Not Found - no match found for the specified account id.
404/Business Category Not Found - no match found for the specified account.
500/Internal Server - unexpected server error, details in the body of the response.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountId

The account id

System.String

Required

Body Parameters

None.

Response Information

Resource Description

IEnumerable of type Business Category

System.Collections.Generic.IEnumerable`1[Altai.Web.Services.Models.BusinessCategory]
NameDescriptionTypeAdditional information
Id

System.String

None.

BusinessName

System.String

None.

Industry

System.String

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "sample string 1",
    "BusinessName": "sample string 2",
    "Industry": "sample string 3"
  },
  {
    "Id": "sample string 1",
    "BusinessName": "sample string 2",
    "Industry": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBusinessCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Altai.Web.Services.Models">
  <BusinessCategory>
    <BusinessName>sample string 2</BusinessName>
    <Id>sample string 1</Id>
    <Industry>sample string 3</Industry>
  </BusinessCategory>
  <BusinessCategory>
    <BusinessName>sample string 2</BusinessName>
    <Id>sample string 1</Id>
    <Industry>sample string 3</Industry>
  </BusinessCategory>
</ArrayOfBusinessCategory>