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. Settings
  • 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
  1. Settings

Update App Settings

Production
https://api.salla.dev/admin/v2
Production
https://api.salla.dev/admin/v2
POST
https://api.salla.dev/admin/v2
/apps/{app_id}/settings
Last modified:2025-03-05 12:01:23
This endpoint allows you to update App Settings per Salla Store.
Important
The App Settings are custom-made parameters by the Salla App Developer. Read here for more on App Settings.
You must pass all Settings even if you need to update just one setting to avoid any data loss. Passing only the key you need to update will cause other values to become null.

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Path Params

Body Params application/json

Example
{
    "email": "test@salla.sa",
    "password": "3534543534",
    "fast_delivery": true,
    "contact_no": 50
}

Request 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/apps/513499943/settings' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "test@salla.sa",
    "password": "3534543534",
    "fast_delivery": true,
    "contact_no": 50
}'

Responses

🟢200Success
application/json
Body

Example
{
    "status": 200,
    "success": true,
    "data": {
        "app_id": "513499943",
        "app_slug": "allrights",
        "settings": {
            "email": "test@store.sa",
            "password": "3534543534",
            "fast_delivery": true,
            "contract_no.": 50
        }
    }
}
🟠403Error
Modified at 2025-03-05 12:01:23
Previous
App Setting Details
Next
Subscriptions