Request
Send your HTTP requests with an Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:Authorization: Basic *****************
Body Params application/json
{
"status": "string",
"created": {
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string"
},
"destination": "string",
"ending_before": "string",
"limit": 0,
"starting_after": "string"
}
Request samples
curl --location --request GET 'https://apitest.wooshpay.com/v1/payouts/list' \
--header 'Accept;' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
"status": "string",
"created": {
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string"
},
"destination": "string",
"ending_before": "string",
"limit": 0,
"starting_after": "string"
}'
Responses
application/json {
"object": "list",
"url": "/v1/payouts",
"has_more": false,
"data": [
{
"id": "po_1M9OPNL6kclEVx6MVxzULjsL",
"object": "payout",
"amount": 1100,
"created": 1669707553,
"currency": "eur",
"destination": "ba_xxxxxxxxxx",
"failure_balance_transaction": null,
"failure_code": null,
"failure_message": null,
"livemode": false,
"metadata": {},
"method": "standard",
"original_payout": null,
"reversed_by": null,
"source_type": "card",
"statement_descriptor": null,
"status": "in_transit",
"type": "bank_account"
}
]
}
Modified at 2024-03-22 09:41:21