Transaction History
This endpoint allows you to retrieve all transactions (or payment orders) made by a customer. It supports filtering by date range, country, and status.
Retrieve transactions
Returns a list of transactions associated with a customer. You can filter the results using optional query parameters like date range, payment country, and transaction status.
GET https://stage.api.payments.depay.us/v2/orders
Headers
Authorization*
String
Bearer Token.
Query Parameters
date_from
String
Start date for filtering transactions (YYYY-MM-DD).
date_to
String
End date for filtering transactions (YYYY-MM-DD).
payment_country
String
Country code to filter transactions (e.g., AR, BR).
status
String
Filter by transaction status (e.g., PENDING, COMPLETED).
Response
order_uuid
String
Unique identifier of the order.
external_reference
String
External reference provided for the transaction.
local_amount
Decimal
Amount in the local currency of the payment.
local_currency
String
Currency code used in the local payment (e.g., BRL, ARS).
local_country
String
Country code where the payment was made (e.g., BR, AR).
collector_name
String
Name of the entity that collected the payment.
user_amount
Decimal
Amount the user was charged in their own currency.
user_currency
String
Currency code of the user (e.g., USD, EUR).
user_name
String
Name of the end user or payer.
qr_text
String
Raw QR string used to initiate the payment.
status
String
Status of the order (e.g., PENDING, COMPLETED, CANCELED).
created_date
String
ISO 8601 timestamp of when the order was created.
process_payment_date
String
ISO 8601 timestamp of when the payment was processed. Can be null.
[
{
"order_uuid": "123e4567-e89b-12d3-a456-426614174000",
"external_reference": "abc12345-def6-7890-gh12-ijklmnopqrst",
"local_amount": "1500.00",
"local_currency": "ARS",
"local_country": "AR",
"collector_name": "PAYMENTS_SOLUTIONS_SA",
"user_amount": "2.50",
"user_currency": "USD",
"user_name": "John Doe",
"qr_text": "00020126360014ar.gov.bcra.pix2555example.com/qr/v1/tx/abcdefg12345678905204000053039865802AR5918PAYMENTS_SOLUTIONS6010BUENOSAIRES62070503***6304ABCD",
"status": "COMPLETED",
"created_date": "2025-03-01T14:23:45.000Z",
"process_payment_date": "2025-03-01T14:25:12.000Z"
},
{
"order_uuid": "987f6543-ba21-34dc-9f87-654321fedcba",
"external_reference": "zxy98765-wvu4-3210-tsrq-ponmlkjihgfe",
"local_amount": "200.00",
"local_currency": "BRL",
"local_country": "BR",
"collector_name": "PIX_PAGAMENTOS_LTDA",
"user_amount": "35.70",
"user_currency": "USD",
"user_name": "Jane Smith",
"qr_text": "00020126850014br.gov.bcb.pix2563example.com/qr/v3/at/xyz98765-4321-4321-aaaa-abcdefabcdef5204000053039865802BR5920PIX_PAGAMENTOS6013SAO PAULO62070503***6304CDEF",
"status": "PENDING",
"created_date": "2025-03-05T10:15:30.000Z",
"process_payment_date": "2025-03-05T10:15:30.000Z"
}
]
{
"eventId": "BadRequest",
"detail": "One or more validation errors occurred.",
"correlationId": "e9119b1b-07ee-4734-8fb4-ceac60ecabc4",
"errores": [{
"code": "400",
"title": "",
"detail": "The X field is required."
}]
}{
"statusCode": 409,
"message": "Conflict error"
}Last updated