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| Name | Description | Type | Additional 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": "93b38da4-b6b7-4447-b218-d68f35b25cbb",
"Number": 2,
"Name": "sample string 3"
},
{
"Id": "93b38da4-b6b7-4447-b218-d68f35b25cbb",
"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>93b38da4-b6b7-4447-b218-d68f35b25cbb</Id>
<Name>sample string 3</Name>
<Number>2</Number>
</SupplierCategoryResponse>
<SupplierCategoryResponse>
<Id>93b38da4-b6b7-4447-b218-d68f35b25cbb</Id>
<Name>sample string 3</Name>
<Number>2</Number>
</SupplierCategoryResponse>
</ArrayOfSupplierCategoryResponse>