Account updater
Buyers - Payment methods
Payment methods
Payment methods - Payment service tokens
Payment methods - Network tokens
Buyers - Gift cards
Buyers - Shipping details
Card scheme definitions
Digital wallets - Setup
Digital wallets - Sessions
Transactions
Refunds
Transactions - Settlements
Payment options
Payment service definitions
Payment services
Audit logs
Reports - Executions
Checkout sessions
Merchant accounts
Transactions - Settlements
List transaction settlements
List all settlements for a specific transaction.
GET
/
transactions
/
{transaction_id}
/
settlements
curl --request GET \
--url https://api.{id}.gr4vy.app/transactions/{transaction_id}/settlements \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"type": "settlement",
"id": "b1e2c3d4-5678-1234-9abc-1234567890ab",
"merchant_account_id": "default",
"created_at": "2024-06-01T12:00:00.000Z",
"updated_at": "2024-06-01T12:00:00.000Z",
"posted_at": "2024-06-01T12:00:00.000Z",
"ingested_at": "2024-06-01T12:00:00.000Z",
"currency": "EUR",
"amount": 1100,
"exchange_rate": 1,
"commission": 100,
"interchange": 50,
"markup": 10,
"scheme_fee": 5,
"payment_service_report_id": "a1b2c3d4-5678-1234-9abc-1234567890ab",
"payment_service_report_file_ids": [
"f1e2d3c4-5678-1234-9abc-1234567890ab"
],
"transaction_id": "7099948d-7286-47e4-aad8-b68f7eb44591"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
The ID of the merchant account to use for this request.
Examples:
"default"
Path Parameters
The unique identifier of the transaction.
Examples:
"7099948d-7286-47e4-aad8-b68f7eb44591"
Response
200
application/json
Successful Response
A list of settlement records for a transaction.
Was this page helpful?
curl --request GET \
--url https://api.{id}.gr4vy.app/transactions/{transaction_id}/settlements \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"type": "settlement",
"id": "b1e2c3d4-5678-1234-9abc-1234567890ab",
"merchant_account_id": "default",
"created_at": "2024-06-01T12:00:00.000Z",
"updated_at": "2024-06-01T12:00:00.000Z",
"posted_at": "2024-06-01T12:00:00.000Z",
"ingested_at": "2024-06-01T12:00:00.000Z",
"currency": "EUR",
"amount": 1100,
"exchange_rate": 1,
"commission": 100,
"interchange": 50,
"markup": 10,
"scheme_fee": 5,
"payment_service_report_id": "a1b2c3d4-5678-1234-9abc-1234567890ab",
"payment_service_report_file_ids": [
"f1e2d3c4-5678-1234-9abc-1234567890ab"
],
"transaction_id": "7099948d-7286-47e4-aad8-b68f7eb44591"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.