You can use the Privacy Request API in order to comply with California Consumer Privacy Act deletion requests through Attentive. For more information, you can review Attentive’s FAQs for CCPA or the Important Notice Regarding the CCPA of 2018.
If you submit an email address or phone number that matches a user for the identified Company or Brand, Attentive will process your deletion request for the matching user(s) only. A user's data may not be deleted if it does not match at least one of the data elements you submitted in the request (email address or phone number). Attentive may reach out to you if we require additional instructions to process your request.
Make a call to this endpoint to create a new privacy deletion request. This will delete a subscriber within thirty days, provided the call was successful.
privacy_requests:write
) Delete request added successfully
Invalid request body
Unauthorized
Access Denied
The specified resource was not found
The user has sent too many requests in a given amount of time
Internal Server Error
{- "subjectEmail": "user@email.com",
- "subjectPhone": "1111111111",
- "requestMsg": "A message",
- "clientUserId": "12345"
}
{- "id": "123abc",
- "processed": false,
- "type": "DELETE",
- "subjectPhone": "+5555555555",
- "requestMsg": "The subscriber requested to be removed",
- "requestDateTime": "2020-09-02T17:44:23.875+0000"
}
privacy_requests:read
) Delete request fetched successfully
Unauthorized
Access Denied
The specified resource was not found
The user has sent too many requests in a given amount of time
Internal Server Error
curl -i -X GET \ 'https://api.attentivemobile.com/v1/privacy/delete-request/{id}' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{- "id": "123abc",
- "processed": true,
- "type": "DELETE",
- "subjectPhone": "+*****5555",
- "subjectEmail": "a**@website.com",
- "requestMsg": "The subscriber requested to be removed",
- "requestDateTime": "2020-09-02T17:44:23.875+0000",
- "processingStartDateTime": "2020-09-02T17:45:23.875+0000",
- "processingEndDateTime": "2020-09-02T17:46:23.875+0000"
}