200 with a { status, msg } object — including when the app id does not exist, in which case status is false and msg is App not found. Use the status boolean (not the HTTP code) to branch.status | msg | Meaning |
|---|---|---|
true | App is active | The app is installed and active for the current site. |
false | App is deactivated | The app exists but is not active for the current site. |
false | App not found | No app matches the given id (or the app is unavailable). |
msg text is localized to the account language.{ "status": true, "msg": "App is active" }{ "status": false, "msg": "App is deactivated" }{ "status": false, "msg": "App not found" }curl --location --globoff 'https://.daftara.com/v2/api/app-manager/is_active/123' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer ' \
--header 'apikey: ' \
--header 'Content-Type: application/json'{
"status": true,
"msg": "App is active"
}