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

App Setting Details

Production
https://api.salla.dev/admin/v2
Production
https://api.salla.dev/admin/v2
GET
https://api.salla.dev/admin/v2
/apps/{app_id}/settings
Settings
Last modified:2024-12-24 06:41:52
This endpoint allows you to fetch details of 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.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
app_id
integer 
required
Salla Application ID. Salla Partners > My Apps > Your App
Example:
513499943

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 GET 'https://api.salla.dev/admin/v2/apps/513499943/settings'

Responses

🟢200Success
application/json
Body
status
number 
optional
Response Status Code
Example:
200
success
boolean 
optional
Whether or not the response is successful
Default:
true
data
object 
optional
app_id
string 
optional
Salla App ID, provided by Salla
Example:
513499943
app_slug
string 
optional
Salla App Slug, provided by Salla
Example:
allrights
settings
object 
optional
Example
{
  "status": 200,
  "success": true,
  "data": {
    "app_id": "513499943",
    "app_slug": "allrights",
    "settings": {
      "email": "[email protected]",
      "password": "123456789",
      "contract_no.": 50,
      "fast_delivery": true
    }
  }
}
🟠404Not Found
🟠403Unauthorized
🟠404Not Found
Modified at 2024-12-24 06:41:52
Previous
Settings
Next
Update App Settings