Delete Sandbox App

Use this API to delete Sandbox app.

Request Parameters

KeyDescriptionConstraints
PARTNER_APP_TOKENPartner app access token issued post partner loginShould be a valid Partner app access token belonging to the passed appId
appIdApp ID for the app to be deletedValid appId
commentComment for app deletionOptional

Sample Request

curl --location --request DELETE 'https://partner.gupshup.io/partner/app/:appId?comment=Delete app' \
--header 'Authorization: {{PARTNER_APP_TOKEN}}'

Sample Response

{
    "message": "App deleted successfully",
    "status": "success"
}

Status Codes

Status CodeResponseComments
Success
200{ "message": "App deleted successfully", "status": "success" }Success when app is deleted
Error
400{ "status":"error", "message/data":"<Specific to API>" }Error with respect to API
401{ "status":"error", "message":"Unauthorized Access" }When authentication fails
403{ "status":"error", "message":"Unauthorized Access" }Access is not allowed
429{ "status": "error", "message": "Too Many Requests" }20 calls per minute
500{ "status": "error", "message": "Internal Server Error" }For any Internal Error
Language
Click Try It! to start a request and see the response here!