Person Properties
Delete person properties in bulk
POST
/
properties
/
delete
Copy
curl --request POST \
--url https://api.rallyuxr.com/api/public/v1/properties/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"propertyIds": [
"<string>"
]
}'
Copy
{
"deleted": [
"<string>"
],
"errors": [
{
"message": "<string>",
"path": [
"<string>"
]
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
Result of deletion
The response is of type object
.
Copy
curl --request POST \
--url https://api.rallyuxr.com/api/public/v1/properties/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"propertyIds": [
"<string>"
]
}'
Copy
{
"deleted": [
"<string>"
],
"errors": [
{
"message": "<string>",
"path": [
"<string>"
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.