Skip to main content

Create a customer deletion request

POST /v2/compliance/customers/delete

Sends a request to Instacart to delete the data for a customer in accordance with the California Consumer Privacy Act (CCPA) and other applicable laws. You can identify the customer in the request body by specifying the customer's email address, phone number, or other unique identifier.

If the request is received, the response contains the success field set to true. After Instacart receives the request, a user privacy workflow is initiated and the customer and any associated user data is deleted.

For more information, see Data Privacy.

note

This endpoint differs from the original Create a user deletion request endpoint, where you must specify the Connect user ID as a parameter in the URL.

Security

NameInDescription
AuthorizationheaderThe Authorization header with the bearer token acquired during authentication.

Request

FieldTypeRequiredDescription
identifierstringRequiredThe customer identifier.

Request Examples

curl --request POST \
--url https://connect.instacart.com/v2/compliance/customers/delete \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"identifier": "string"
}'

Response

FieldTypeRequiredDescription
successbooleanOptionalsuccess flag.

Response Examples