Version: 202201
List Suppliers
GET/openapi/2022-01/suppliers
Allows users to retrieve a list of suppliers with optional filtering by specific supplier IDs.
Request
Query Parameters
ids string[]
A list of supplier IDs to filter results. Empty value retrieves all suppliers.
page int32
Page number of results to retrieve, starting from 1. Must be a positive integer.
limit int32
The maximum number of results per page. Acceptable range: 1 to 100.
Responses
- 200
200
- application/json
- Schema
- Example
- Result
Schema
- Array [
- ]
suppliers object[]
idstring
Example:
382453603865993516titlestring
Example:
example supplierurlstring
Example:
https://shoplazza.comcreated_atstring
Example:
2024-05-21T08:54:05Zupdated_atstring
Example:
2024-05-21T08:54:05Zcountinteger
Default value:
0Example:
1{
"suppliers": [
{
"id": "382453603865993516",
"title": "example supplier",
"url": "https://shoplazza.com",
"created_at": "2024-05-21T08:54:05Z",
"updated_at": "2024-05-21T08:54:05Z"
}
],
"count": 1
}
{
"suppliers": [
{
"id": "382453603865993516",
"title": "example supplier",
"url": "https://shoplazza.com",
"created_at": "2024-05-21T08:54:05Z",
"updated_at": "2024-05-21T08:54:05Z"
}
],
"count": 1
}