Fetch Settlement
GET/settlements/:id
Fetch Settlement
Request
Path Parameters
ID of the settlement to fetch
Responses
- 200
- 401
- 403
- 404
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [Entity
, Platform
, Beneficiary
]
ISO-4217 three-letter currency code.
Full settlement amount before subtracting the settlement (bank transfer) fee
settlement (bank transfer) fee for the settlement. Includes VAT.
VAT
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",
"amount": 24209,
"fee": 46,
"tax": 6,
"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."
}
- 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
}
- 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
}
- 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
}