POST
/
people
/
delete
curl --request POST \
  --url https://api.rallyuxr.com/api/public/v1/people/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "personIds": [
    "cm0b4eokq000vbbsimwelll3u"
  ]
}'
{
  "message": "<string>",
  "count": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Unique identifier of the person to be deleted, either personId or by email lookup

personIds
string[]
required

People to be deleted by id

Response

202
application/json
Count of people marked for deletion
message
string
required
count
number
required