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

Name
Type
Description

Authorization*

String

Bearer Token.

Query Parameters

Name
Type
Description

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

Name
Type
Description

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.

Last updated