Handling user app uninstallation

Below is an article describing details on the app uninstallation flow

@David

This DELETE request will contain the following properties

I do not see the mentioned properties coming through in the request.

The properties are sent as parameters in the body

When the app gets uninstalled we make a DELETE request with JSON body to app specified uninstall endpoint.

Example:

DELETE /your-uninstall-callback-url

content-type: application/json

body: "{

“client_id”: “client_id”,

“user_id”: “user_id”,

“company_id”: “company_id”,

“timestamp”: “timestamp”,

}"

5 Likes