POST
/
properties
/
delete
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>"
  ]
}'
{
  "deleted": [
    "<string>"
  ],
  "errors": [
    {
      "message": "<string>",
      "path": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
propertyIds
string[]
required

The IDs of the properties to delete

Response

200
application/json
Result of deletion
deleted
string[]
required

The IDs of the properties that were deleted

errors
object[]

Partial errors that occurred during deletion