cURL
curl --request POST \ --url https://api.rallyuxr.com/api/public/v1/person \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "email": "[email protected]", "optedOut": true } '
{ "email": "[email protected]", "optedOut": true }
This will in turn update their contact status. Deprecated, use PUT /people/{personId}/opted-out instead
PUT /people/{personId}/opted-out
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully updated the person's optedOut property.