PUT
/
properties
/
{propertyId}
curl --request PUT \
  --url https://api.rallyuxr.com/api/public/v1/properties/{propertyId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "propertyOptions": [
    {
      "name": "SMB (1 - 100 employees)",
      "color": "GREEN"
    }
  ],
  "isPHI": true,
  "isPII": true
}'
{
  "propertyId": "<string>",
  "name": "<string>",
  "propertyType": "SINGLE_SELECT",
  "propertyOptions": [
    {
      "propertyOptionId": "<string>",
      "name": "<string>",
      "color": "GREY",
      "order": "1"
    }
  ],
  "isUnique": true,
  "isPHI": true,
  "isPII": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

propertyId
string
required

Body

application/json

Input object for editing a person property. Pass all property options except ones that will be deleted

Response

200
application/json

The updated person property

An individual person property