inventory/supplier/get
POST
/inventory/supplier/getThis returns the list of suppliers available in the Equotix One account.
Request
The domain you are assigned to authenticate your Equotix One account.
The email address assigned to the user account in your Equotix One.
The unix timestamp used to sign this API request.
The calculated signature for this API request.
The supplier ID to search for specifically.
Filter the list of suppliers by name.
Filter the list of suppliers modified after the spcified date.
Filter the list of suppliers to include deleted records.
The channel group ID to search for, comma separated for multiple channel group IDs.
Page number of the results.
The key for the ordering of the results. Accepts "name", "date_added", "date_modified".
The direction for the ordering of the results. Accepts "ASC", "DESC"
The number of results per page. Accepts 1 to 100.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"supplier_id": 0,
"filter_name": "string",
"filter_date_modified": "string",
"filter_deleted": true,
"filter_channel_group_id": 0,
"page": 0,
"sort": "string",
"order": "string",
"limit": 0
}
Responses
Returns only if there is an error.
The total number of results available.
The list of suppliers available.
The supplier ID.
The channel group ID.
The supplier name.
The supplier first name.
The supplier last name.
The comment for the item reservation.
The supplier telephone.
The supplier address 1.
The supplier address 2.
The supplier city.
The supplier postcode.
The supplier zone.
The supplier country.
The date time the supplier was created.
The date time the supplier was last modified.
Indicates if the supplier has been deleted. Only returned if filter_deleted is "1".
{
"error": [
"string"
],
"total": 0,
"suppliers": [
{
"supplier_id": 0,
"channel_group_id": 0,
"name": "string",
"firstname": "string",
"lastname": "string",
"email": "string",
"telephone": "string",
"address_1": "string",
"address_2": "string",
"city": "string",
"postcode": "string",
"zone": "string",
"country": "string",
"date_added": "string",
"date_modified": "string",
"deleted": true
}
]
}