curl --request GET \
--url https://api.yorlet.com/v1/transactions \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"object": "transaction",
"adaptive_pricing": {
"localized_prices": [
{
"amount": 123,
"currency": "<string>",
"presentment_exchange_rate": {
"currency": "<string>",
"exchange_rate": 123
}
}
]
},
"amount": 123,
"application": "<string>",
"balance_transaction": "<string>",
"capture_method": "automatic",
"client_secret": "<string>",
"confirmed_at": 123,
"cross_border": {
"amount": 123,
"enabled": true
},
"currency": "<string>",
"customer": "<string>",
"description": "<string>",
"dispute": "<string>",
"invoice": "<string>",
"last_payment_error": {
"code": "<string>",
"failed_at": 123,
"message": "<string>"
},
"next_action": {
"type": "redirect_to_url",
"redirect_to_url": {
"url": "<string>"
}
},
"paid_at": 123,
"payment_method": "<string>",
"payment_method_types": [
"<string>"
],
"payment_session": "<string>",
"presentment_details": {
"amount": 123,
"currency": "<string>"
},
"processing": {
"type": "bacs_debit"
},
"receipt_url": "<string>",
"reporting_type": "<string>",
"status": "requires_payment_method",
"transfer_group": "<string>",
"account": "<string>",
"deleted": false,
"amount_refunded": 0,
"disputed": false,
"metadata": {},
"refunded": false
}
]
}List all transactions
curl --request GET \
--url https://api.yorlet.com/v1/transactions \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"object": "transaction",
"adaptive_pricing": {
"localized_prices": [
{
"amount": 123,
"currency": "<string>",
"presentment_exchange_rate": {
"currency": "<string>",
"exchange_rate": 123
}
}
]
},
"amount": 123,
"application": "<string>",
"balance_transaction": "<string>",
"capture_method": "automatic",
"client_secret": "<string>",
"confirmed_at": 123,
"cross_border": {
"amount": 123,
"enabled": true
},
"currency": "<string>",
"customer": "<string>",
"description": "<string>",
"dispute": "<string>",
"invoice": "<string>",
"last_payment_error": {
"code": "<string>",
"failed_at": 123,
"message": "<string>"
},
"next_action": {
"type": "redirect_to_url",
"redirect_to_url": {
"url": "<string>"
}
},
"paid_at": 123,
"payment_method": "<string>",
"payment_method_types": [
"<string>"
],
"payment_session": "<string>",
"presentment_details": {
"amount": 123,
"currency": "<string>"
},
"processing": {
"type": "bacs_debit"
},
"receipt_url": "<string>",
"reporting_type": "<string>",
"status": "requires_payment_method",
"transfer_group": "<string>",
"account": "<string>",
"deleted": false,
"amount_refunded": 0,
"disputed": false,
"metadata": {},
"refunded": false
}
]
}API Key authentication. Use "Bearer YOUR_API_KEY".
A dictionary with a data property that contains an array of up to limit transactions. Each entry in the array is a separate transaction object. If no more transactions are available, the resulting array will be empty.
Was this page helpful?