Light Mode
List Instant Settlements
GET
/settlements/instantLast modified: 13 days ago
This 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
Query Params
reference_id
integer
optional
Filter by order's reference ID. Get a list of Order Reference IDs from here
page
integer
optional
Filter by page number
Request samples
Responses
Success(200)
Forbidden(403)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
No schema defined
Example
{
"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"
}
}
}
Last modified: 13 days ago