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

Update Instant Settlement

Production
https://api.salla.dev/admin/v2
Production
https://api.salla.dev/admin/v2
PUT
https://api.salla.dev/admin/v2
/settlements/instant/{id}
Last modified:2025-08-12 14:30:11
This endpoint allows you to update the status and the amount of a specific settlment by by passing the id as a path parameter.
This endpoint is allowed only for dropshipping applications.
Scopes
settlements.read_write - Settlements Read & Write

Request

Authorization
or
Path Params

Body Params application/json

Example
{
    "amount": 9823743,
    "status": "ready"
}

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

Responses

🟢200OK
application/json
Body

Example
{
    "status": 200,
    "success": true,
    "data": {
        "id": 33787469,
        "reference_id": 685748,
        "amount": 200,
        "status": "ready"
    }
}
🟠422Parameter Error
🟠404Record Not Found
🟠403Forbidden
🟠401Unauthorized
Modified at 2025-08-12 14:30:11
Previous
Create Instant Settlement
Next
Instant Settlement Details