Skip to main content
POST
/
customer-trust
/
deletion-requests
Create data deletion request
curl --request POST \
  --url https://api.vanta.com/v1/customer-trust/deletion-requests \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>"
}
'
{
  "isSuccessful": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request body for creating a data deletion request.

email
string
required

Email address of the individual requesting data deletion.

Response

200 - application/json

Ok

Response returned after a data deletion request is created.

isSuccessful
boolean
required

Whether the deletion request was successfully enqueued.