Salla Docs
Merchant API
  • Merchant API
  • Salla OAuth 2.0
Partner APIs
  • App API
  • Shipment API
Storefront
  • Twilight Engine
  • Twilight SDK
  • Web Components
  • Change Log
Salla CLI
Merchant API
  • Merchant API
  • Salla OAuth 2.0
Partner APIs
  • App API
  • Shipment API
Storefront
  • Twilight Engine
  • Twilight SDK
  • Web Components
  • Change Log
Salla CLI
Salla - Opensource
Salla - Developers Community
  1. Settlements
  • Get Started
  • Create Your First App
  • App Events
  • Settings
    • App Setting Details
      GET
    • Update App Settings
      POST
  • Subscriptions
    • App Subscription Details
      GET
    • Update Subscription Balance
      POST
  • Settlements
    • List Instant Settlements
      GET
    • Create Instant Settlement
      POST
    • Update Instant Settlement
      PUT
    • Instant Settlement Details
      GET
  1. Settlements

List Instant Settlements

Production
https://api.salla.dev/admin/v2
Production
https://api.salla.dev/admin/v2
GET
https://api.salla.dev/admin/v2
/settlements/instant
Last modified:2024-12-29 06:40:32
This endpoint lists all the instant settlements including details such as amount and status that are associated with the store.
This endpoint is allowed only for dropshipping applications.
Scopes
settlements.read - Settlements Read Only

Request

Authorization
or
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.salla.dev/admin/v2/settlements/instant?reference_id&page'

Responses

🟢200Success
application/json
Body

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"
        }
    }
}
🟠403Forbidden
🟠401Unauthorized
Modified at 2024-12-29 06:40:32
Previous
Settlements
Next
Create Instant Settlement