curl --request GET \
--url https://api.yorlet.com/v1/payment_runs \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"object": "payment_run",
"amount": 123,
"approved_at": 123,
"completed_at": 123,
"currency": "gbp",
"description": "<string>",
"method": "manual",
"payout_status": {
"canceled": 123,
"failed": 123,
"paid": 123,
"total": 123
},
"region": "all",
"status": "requires_approval",
"type": "all",
"account": "<string>",
"deleted": false,
"metadata": {}
}
]
}curl --request GET \
--url https://api.yorlet.com/v1/payment_runs \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"object": "payment_run",
"amount": 123,
"approved_at": 123,
"completed_at": 123,
"currency": "gbp",
"description": "<string>",
"method": "manual",
"payout_status": {
"canceled": 123,
"failed": 123,
"paid": 123,
"total": 123
},
"region": "all",
"status": "requires_approval",
"type": "all",
"account": "<string>",
"deleted": false,
"metadata": {}
}
]
}API Key authentication. Use "Bearer YOUR_API_KEY".
Was this page helpful?