Fetch Settlement
GET/settlements/:id
Fetch Settlement
Request
Path Parameters
ID of the settlement to fetch
Responses
- 200
- 401
- 403
- 404
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
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
{
"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."
}
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
}
One of the record referenced in the request was not found
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [record_not_found]
{
"type": "record_not_found",
"message": "The <object type> record you were looking for was not found.",
"errors": null
}