GET supplier/suppliercategories

Gets all supplier categories

Request Information

URI Parameters

None.

Body Parameters

None.

Remarks

None.

Example

None.

Response Information

Resource Description

Collection of SupplierCategoryResponse
NameDescriptionTypeAdditional information
Id

Id for the supplier category

globally unique identifier

None.

Number

Number of the supplier category

integer

None.

Name

Name of the supplier category

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "dc036cf4-570c-45b0-bdc4-d863a34052e0",
    "Number": 2,
    "Name": "sample string 3"
  },
  {
    "Id": "dc036cf4-570c-45b0-bdc4-d863a34052e0",
    "Number": 2,
    "Name": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSupplierCategoryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.Supplier">
  <SupplierCategoryResponse>
    <Id>dc036cf4-570c-45b0-bdc4-d863a34052e0</Id>
    <Name>sample string 3</Name>
    <Number>2</Number>
  </SupplierCategoryResponse>
  <SupplierCategoryResponse>
    <Id>dc036cf4-570c-45b0-bdc4-d863a34052e0</Id>
    <Name>sample string 3</Name>
    <Number>2</Number>
  </SupplierCategoryResponse>
</ArrayOfSupplierCategoryResponse>