Light Mode
Update App Settings
POST
/apps/{app_id}/settingsLast modified: 2 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
No schema defined
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
No schema defined
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: 2 months ago