This document describes the usage of the Erasure API endpoint provided by Inflection.io. This endpoint is used to initiate a user data erasure request based on the user's email address.
POST <https://core-integrations.inflection.io/v1/erasure/persons>
The endpoint requires Bearer token authentication. The token must be passed in the Authorization header.
Header Example:
Authorization: Bearer <your_access_token>
{
"Authorization": "Bearer <your_access_token>",
"Content-Type": "application/json"
}
| Field | Type | Description |
|---|---|---|
| string | Email address to be erased |
Sample Request Body:
{
"email": "[email protected]"
}
curl Command