List Payout Details
GET/openapi/2024-07/shoplazza-payment/payout/details
Return the payout details. Objects are sorted in descending order by creation date, with the most recently created objects shown first
Request
Query Parameters
Start time for payout details (unix timestamp)
End time for payout details (unix timestamp)
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
Currency of the payout account
cursor for pagination, use the cursor from the response for pagination
Responses
- 200
- 422
- 500
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
error code
error message
data object
list object[]
List of payout details
Payout ID
Unique identifier for the store
Payout time (unix timestamp)
Payout status (e.g., "succeeded","processing", "failed") succeeded: The payout was successfully completed, and funds have been transferred to the recipient. processing: The payout is currently in progress, and the final transfer of funds is pending confirmation. failed: The payout attempt failed, and the funds were not transferred.
Payout currency
Payout amount
Bank name where the payout is received
Last 4 digits of the bank account receiving the payout
Routing number of the bank account receiving the payout
Indicator of whether there is more data for pagination
cursor for pagination
{
"code": "string",
"message": "string",
"data": {
"list": [
{
"id": "string",
"store_id": "string",
"created_at": "string",
"status": "string",
"currency": "string",
"amount": "string",
"bank_name": "string",
"last4": "string",
"routing_number": "string"
}
],
"has_more": true,
"cursor": "string"
}
}
invalid parameter
- application/json
- Schema
- Example
- Example
Schema
error code
error message
{
"code": "string",
"message": "string"
}
{
"code": "InvalidParameter",
"message": "Currency is required."
}
invalid parameter
- application/json
- Schema
- Example
- Example
Schema
error code
error message
{
"code": "string",
"message": "string"
}
{
"code": "InvalidParameter",
"message": "wrong cursor"
}