POST
/
person
/
delete
curl --request POST \
  --url https://api.rallyuxr.com/api/public/v1/person/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "emails": [
    "email1@gmail.com",
    "email2@gmail.com",
    "email3@gmail.com"
  ]
}'
{
  "personsDeletedCount": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json

List of email addresses to be deleted.

emails
string[]
required

Response

200
application/json
Successfully scheduled delete of all persons with provided emails.
personsDeletedCount
integer
required

Number of person records softly deleted.