Overview

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.


Endpoint

POST <https://core-integrations.inflection.io/v1/erasure/persons>


Authentication

The endpoint requires Bearer token authentication. The token must be passed in the Authorization header.

Header Example:

Authorization: Bearer <your_access_token>


Request

Headers

{
  "Authorization": "Bearer <your_access_token>",
  "Content-Type": "application/json"
}

Body Parameters

Field Type Description
email string Email address to be erased

Sample Request Body:

{
  "email": "[email protected]"
}


Sample curl Command