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

Create Instant Settlement

Production
https://api.salla.dev/admin/v2
Production
https://api.salla.dev/admin/v2
POST
https://api.salla.dev/admin/v2
/settlements/instant
Last modified:2025-08-13 10:29:48
This endpoint allows you to temporarily withhold a specific amount of money for settlement from the Merchant's wallet.
This endpoint is allowed only for dropshipping applications.
Scopes
settlements.read_write - Settlements Read & Write

Request

Authorization
or
Body Params application/json

Example
{
    "reference_id": 9363145,
    "amount": 120.21
}

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 POST 'https://api.salla.dev/admin/v2/settlements/instant' \
--header 'Content-Type: application/json' \
--data-raw '{
    "reference_id": 9363145,
    "amount": 120.21
}'

Responses

🟢201Created
application/json
Body

Example
{
    "status": 201,
    "success": true,
    "data": {
        "id": 587246469,
        "reference_id": 385748,
        "amount": 200,
        "status": "pending"
    }
}
🟠422error_validation
🟠404error_notFound_404
🟠403Forbidden
🟠401Unauthorized
Modified at 2025-08-13 10:29:48
Previous
List Instant Settlements
Next
Update Instant Settlement