Appearance
Get receipt list by seller id ​
Description ​
The call is used to obtain and filtering created Receipt's
Calling ​
GET /{qwqerId}/receipts
Get parameters ​
| Parameter Key Name | Description |
|---|---|
qwqerId | Marketplace UUID |
Additional Get Parameters ​
This method has Pagination support.
Calling without parameters return all receipts.
You can also filter them by certain parameters.
Example:
?sellerId={sellerId}&
storageId={storageId}&
from={from}&
to={to}&
status={status}| Parameter Key Name | Description |
|---|---|
{sellerId} | Marketplace seller unique identifier in your system |
{storageId} | Storage UUID |
{status} | Status of Receipt (new,sent,delivered) |
{from} | Created From Date 2024-12-31 00:00:00 |
{to} | Created To Date 2024-12-31 23:54:33 For filtering by date must be included from and to parameters. |
Response ​
200 - Successful request ​
json
[
{
"id": "string",
"type": "string",
"status": "string",
"createdAt": "string",
"receivedAt": "string",
"trackingLink": "string",
"items": [
{
"id": "string",
"quantity": 0,
"externalId" : "string",
"box" : { // or null
"id" : "string",
"externalId" : "string"
}
}
],
"boxes" : [
{
"id" : "string",
"externalId" : "string",
"items" : [
{
"id": "string",
"quantity": 0,
"externalId" : "string",
}
]
}
]
}
]400 - Invalid request ​
json
{
"message": "string"
}