Country:
/cashouts-api/api/v1/cashouts/{id}
Obtener un Cashout por su ID
URL Parameters
id
Identificador único del cashout
example
Response Examples
200
200
{
"id": "example_string",
"client_id": "example_string",
"totals": {
"currency": "example_string",
"amount": 123,
"discounts": [
{
"currency": "example_string",
"amount": 123,
"discount_reason": "example_string"
}
]
},
"created_at": "example_string",
"updated_at": "example_string",
"status": "example_string",
"transfers": [
{
"id": "example_string",
"cashout_method": {
"id": "example_string",
"client_id": "example_string",
"type": "example_string",
"account_type": "example_string",
"account_number": "example_string",
"bank_name": "example_string",
"account_holder": "example_string",
"extra_data": "example_string",
"country": "example_string",
"created_at": "example_string",
"updated_at": "example_string"
},
"attachments": [
{
"id": "example_string",
"file_name": "example_string"
}
],
"amount": 123,
"currency": "example_string",
"comment": "example_string",
"reference_id": "example_string"
}
]
}400
400
{}Language
Login required to test API
Code Examples
cURL
curl -X GET "https://api.akua.la/cashouts-api/api/v1/cashouts/example_value" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"