deleteApp

POST /deleteApp

Deletes an App from the user’s Space.

Example Request

POST /deleteApp HTTP/1.1
Content-Type: application/json
Accept: application/json

{
  "apikey": "E14D8D73-0C78-4583-897A-EE9C1B10E10A",
  "sessionid": "48F2E9A0-ABD6-4C80-B8DA-61D0DDE4A43B",
  "appuid": "10521229-B45F-47C5-AB11-CFF4D0E52329"
}

Example Response

HTTP/1.1 200 OK
Content-Type: application/json

{
  "data": null,
  "message": "Successfully removed App.",
  "success": true
}
Request JSON Object:
 
  • apikey (string) – User API key
  • sessionid (string) – User session ID
  • appuid (string) – The UID of the App to delete
Response JSON Object:
 
  • data – Response data
  • message – Response message
  • success – Returns true if deletion is successful, false otherwise