Country:
/v1/chargebacks/{id}
Obtener un Contracargo por su Id
URL Parameters
id
Identificador único de un contracargo
example
Response Examples
200
200
{
"id": "example_string",
"payment_id": "example_string",
"transaction_id": "example_string",
"merchant_id": "example_string",
"organization_id": "example_string",
"status": "example_string",
"created_at": "example_string",
"updated_at": "example_string",
"expires_at": "example_string",
"attachments": [
{
"id": "example_string",
"file_name": "example_string",
"upload_at": "example_string",
"deleted_at": "example_string"
}
],
"amount": 123,
"currency": "example_string",
"history": [
{
"status": "example_string",
"created_by": "example_string",
"comment": "example_string",
"created_at": "example_string"
}
],
"comments": [
{
"comment": "example_string",
"author": "example_string",
"created_at": "example_string",
"updated_at": "example_string"
}
]
}400
400
{}Language
Login required to test API
Code Examples
cURL
curl -X GET "https://api.akua.la/v1/chargebacks/example_value" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"