POST
/
person
curl --request POST \
  --url https://api.rallyuxr.com/api/public/v1/person \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "jsmith@example.com",
  "optedOut": true
}'
{
  "email": "jsmith@example.com",
  "optedOut": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Successfully updated the person's optedOut property.

The response is of type object.