GET api/CurrentUser/ProductCategories

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of LookupItemDTO
NameDescriptionTypeAdditional information
Id

integer

None.

DisplayName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "DisplayName": "sample string 2"
  },
  {
    "Id": 1,
    "DisplayName": "sample string 2"
  }
]

text/html, multipart/form-data, application/zip

Sample:
[{"Id":1,"DisplayName":"sample string 2"},{"Id":1,"DisplayName":"sample string 2"}]

application/xml, text/xml

Sample:
<ArrayOfLookupItemDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DentaCad.DTO">
  <LookupItemDTO>
    <DisplayName>sample string 2</DisplayName>
    <Id>1</Id>
  </LookupItemDTO>
  <LookupItemDTO>
    <DisplayName>sample string 2</DisplayName>
    <Id>1</Id>
  </LookupItemDTO>
</ArrayOfLookupItemDTO>