GET api/Tenant/Category

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TenantCategoryModels
NameDescriptionTypeAdditional information
CategoryId

globally unique identifier

None.

CategoryName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CategoryId": "c24ceaa4-666b-4edc-a281-b88fe3c2cbeb",
    "CategoryName": "sample string 1"
  },
  {
    "CategoryId": "c24ceaa4-666b-4edc-a281-b88fe3c2cbeb",
    "CategoryName": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTenantCategoryModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API4WEB.Models">
  <TenantCategoryModels>
    <CategoryId>c24ceaa4-666b-4edc-a281-b88fe3c2cbeb</CategoryId>
    <CategoryName>sample string 1</CategoryName>
  </TenantCategoryModels>
  <TenantCategoryModels>
    <CategoryId>c24ceaa4-666b-4edc-a281-b88fe3c2cbeb</CategoryId>
    <CategoryName>sample string 1</CategoryName>
  </TenantCategoryModels>
</ArrayOfTenantCategoryModels>