Gets a list of supplier types.
Name | Description | Usage |
---|---|---|
className | This will filter the request by class name. | GET suppliertypes?filter=classname~{operator}~{value} |
isActive | This will filter the request by the is active flag. | GET suppliertypes?filter=isactive~{operator}~{value} |
name | This will filter the request by name. | GET suppliertypes?filter=name~{operator}~{value} |
Name | Description | Usage |
---|---|---|
className | This will sort the response by class name. | GET suppliertypes?sort=classname |
name | This will sort the response by name. | GET suppliertypes?sort=name |
supplierTypeId | This will sort the response by supplier type ID. | GET suppliertypes?sort=suppliertypeid |
Name | Description | Usage |
---|---|---|
index | The index to retrieve when requesting paged results. | GET suppliertypes?page=index~{value} |
size | The size of the page when retrieving paged results. | GET suppliertypes?page=size~{value} |
If this endpoint supports expands, they will be included in the sample response body below. However, please note that expands are NOT included in the response body by default. Expands are only included in the response body if they came through as part of the request.
{
"SupplierTypes": [
{
"ClassName": "ZnodeSupplierEmail",
"Description": "Sends an email receipt of the order to the supplier.",
"IsActive": true,
"Name": "Email",
"SupplierTypeId": 1
}
],
"PageIndex": null,
"PageSize": null,
"TotalPages": null,
"TotalResults": null,
"ErrorCode": null,
"ErrorMessage": null,
"StackTrace": null,
"AllowHtmlResponse": false,
"HasError": false,
"StringResponse": null
}