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.
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"
}