POST /configuration/delete
API reference for the "/configuration/delete" endpoint.
If an app supports authentication, Canva sends a POST
request to the following endpoint when a user disconnects the app from Canva:
<authentication_base_url>/configuration/delete
bash
The purpose of this request is to de-authenticate the user, allowing them to either re-authenticate with different credentials or to simply remove the connection between Canva and the app's backend.
Request
Endpoint
POST <authentication_base_url>/configuration/delete
bash
Headers
Body
Properties
Example
{"user": "<user>","brand": "<brand>"}
json
Responses
200 - Success
Properties
Example
{"type": "SUCCESS"}
json
200 - Error
Properties
Example
{"type": "ERROR","errorCode": "<error_code>"}
json
401 - Invalid request signature or timestamp
An extension must verify the request signature and timestamp of all incoming requests. When an extension can't verify either of these values, it must reject the request with a 401
status code.