List Instant Settlements
GET
/settlements/instantThis endpoint lists all the instant settlements including details such as amount and status that are associated with the store.
:::warning[]
This endpoint is allowed only for dropshipping applications.
:::
Request
Filter by order's reference ID. Get a list of Order Reference IDs from here
Filter by page number
Request samples
[api.label.responses]
Response status code, a numeric or alphanumeric identifier used to convey the outcome or status of a request, operation, or transaction in various systems and applications, typically indicating whether the action was successful, encountered an error, or resulted in a specific condition.
Response flag, boolean indicator used to signal a particular condition or state in the response of a system or application, often representing the presence or absence of certain conditions or outcomes.
Settlement unique ID
Order's reference ID. Get a list of Order Reference IDs from here
The amount held from the Merchant's wallet
The settlement status
For a better response behavior as well as maintain the best security level, All retrieving API endpoints use a mechanism to retrieve data in chunks called pagination. Pagination working by return only a specific number of records in each response, and through passing the page number you can navigate the different pages.
Number of returned results.
Number of all results.
Number of results per page.
Number of current page.
Number of total pages.
Array of linkes to next and previous pages.
{
"status": 200,
"success": true,
"data": [
{
"id": 40643814,
"reference_id": 1444968,
"amount": 56.21,
"status": "settled"
},
{
"id": 814209365,
"reference_id": 913456,
"amount": 50,
"status": "ready"
},
{
"id": 172398348,
"reference_id": 324144,
"amount": 100,
"status": "pending"
},
{
"id": 3499435415,
"reference_id": 694175,
"amount": 37.41,
"status": "pending"
},
{
"id": 989289633,
"reference_id": 360174,
"amount": 469.7,
"status": "pending"
},
{
"id": 1749842897,
"reference_id": 460169,
"amount": 85.36,
"status": "ready"
},
{
"id": 52596436,
"reference_id": 4016556,
"amount": 1000,
"status": "pending"
},
{
"id": 1298194523,
"reference_id": 4034135,
"amount": 11.2,
"status": "pending"
},
{
"id": 1939592358,
"reference_id": 3879624,
"amount": 118,
"status": "pending"
},
{
"id": 566146469,
"reference_id": 3879628,
"amount": 200,
"status": "pending"
}
],
"pagination": {
"count": 10,
"total": 10,
"perPage": 15,
"currentPage": 1,
"totalPages": 1,
"links": {
"previous": "http://api.salla.dev/admin/v2/setllements/instant?page=3",
"next": "http://api.salla.dev/admin/v2/setllements/instant?page=2"
}
}
}