Trigger App Uninstall
If your integration is public, you can uninstall the integration on behalf of a client who has connected your app via our API using the following endpoint.
POST https://driftapi.com/app/uninstall?clientId={clientId}&clientSecret={clientSecret}
Required Header Parameters:
Authorization: Bearer {client's access token}
Content-Type: application/json
If the integration was successfully uninstalled, you will receive the following response:
{
"result": "OK",
"ok": true
}
Note:
Once the integration is successfully uninstalled, the client's access token used to make the request will be invalidated. The integration can be re-enabled by following the OAuth protocol for authorization.
Updated over 5 years ago