Version: 202201
Get Supplier Detail
GET/openapi/2022-01/suppliers/:id
Retrieves the detailed information of a specific supplier by its unique identifier (id).
Request
Path Parameters
id stringrequired
Supplier ID
Responses
- 200
- 400
- 404
200
- application/json
- Schema
- Example
- Result
Schema
supplier object
idstring
Example:
382453603865993516titlestring
Example:
example supplierurlstring
Example:
https://shoplazza.comcreated_atstring
Example:
2024-05-21T08:54:05Zupdated_atstring
Example:
2024-05-21T08:54:05Z{
"supplier": {
"id": "382453603865993516",
"title": "example supplier",
"url": "https://shoplazza.com",
"created_at": "2024-05-21T08:54:05Z",
"updated_at": "2024-05-21T08:54:05Z"
}
}
{
"supplier": {
"id": "382453603865993516",
"title": "example supplier",
"url": "https://shoplazza.com",
"created_at": "2024-05-21T08:54:05Z",
"updated_at": "2024-05-21T08:54:05Z"
}
}
400
- application/json
- Schema
- Example
- Result
Schema
errorsstring[]
{
"errors": [
"invalid id"
]
}
{"errors":["invalid id"]}
404
- application/json
- Schema
- Example
- Result
Schema
errorsstring[]
{
"errors": [
"Supplier not found"
]
}
{
"errors": [
"Supplier not found"
]
}