List Settlements
GET/settlements
List Settlements
Request
Query Parameters
Default value: 1
Page to list
Settlement ID to look for
Filter settlements created on a date equal or greater than a give date
Filter settlements created on a date equal or less than a give date
Responses
- 200
- 401
- 403
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
settlements
object[]
Possible values: [Entity, Platform, Beneficiary]
ISO-4217 three-letter currency code.
Source (original) currency of transactions included in this settlement.
Currency used for invoicing.
Full settlement amount before subtracting the settlement (bank transfer) fee
settlement (bank transfer) fee for the settlement. Includes VAT.
VAT
settlement fee in invoicing currency.
VAT in invoicing currency.
Exchange rate used to convert from invoicing_fee to fee.
Settlement bank transfer sequence number. This value is not available yet and will be provided in future updates.
Number of transactions included in the settlement
Settlement invoice PDF file URL.
Settlement transaction CSV list.
Settlement transaction PDF list. This is not always available
meta
object
{
"settlements": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"recipient_type": "Entity",
"recipient_id": "c5c57597-0d06-4583-9da5-c755c4943ede",
"currency": "SAR",
"source_currency": "string",
"invoicing_currency": "string",
"amount": 24209,
"fee": 46,
"tax": 6,
"invoicing_fee": 46,
"invoicing_tax": 6,
"invoicing_ex_rate": 1,
"reference": null,
"settlement_count": 1,
"invoice_url": "https://example.com/invoice.pdf",
"csv_list_url": "https://example.com/list.csv",
"pdf_list_url": "https://example.com/list.pdf",
"created_at": "Date and time when the settlement was created."
}
],
"meta": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1
}
}
Invalid authorization credentials
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [authentication_error]
Possible values: [Invalid authorization credentials]
{
"type": "authentication_error",
"message": "Invalid authorization credentials",
"errors": null
}
Invalid authorization credentials
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [api_error]
Possible values: [User not authorized]
{
"type": "api_error",
"message": "User not authorized",
"errors": null
}