Light Mode
Update App Settings
POST
/apps/{app_id}/settingsLast modified: 3 months ago
This endpoint allows you to update App Settings per Salla Store.
:::warning[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
Path Params
app_id
integer
required
Salla Application ID. [Salla Partners](https://salla.partners) > My Apps > Your App
Body Params application/json
password
string
optional
Custom App Setting Parameter
Example:
3534543534
fast_delivery
boolean
optional
Custom App Setting Parameter
Default:
true
contact_no
number
optional
Custom App Setting Parameter
Example:
50
Example
{
"email": "[email protected]",
"password": "3534543534",
"fast_delivery": true,
"contact_no": 50
}
Request samples
Responses
Success(200)
Error(403)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
password
string
optional
Custom App Setting Parameter
Example:
3534543534
fast_delivery
boolean
optional
Custom App Setting Parameter
Default:
true
contact_no
number
optional
Custom App Setting Parameter
Example:
50
Example
{
"status": 200,
"success": true,
"data": {
"app_id": "513499943",
"app_slug": "allrights",
"settings": {
"email": "[email protected]",
"password": "3534543534",
"fast_delivery": true,
"contract_no.": 50
}
}
}
Last modified: 3 months ago