Person Properties
Get a person property by ID
GET
/
properties
/
{propertyId}
curl --request GET \
--url https://api.rallyuxr.com/api/public/v1/properties/{propertyId} \
--header 'Authorization: Bearer <token>'
{
"propertyId": "<string>",
"name": "<string>",
"propertyType": "SINGLE_SELECT",
"propertyOptions": [
{
"propertyOptionId": "<string>",
"name": "<string>",
"color": "GREY",
"order": "1"
}
],
"isUnique": true,
"isPHI": true,
"isPII": true
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
The person property
An individual person property
curl --request GET \
--url https://api.rallyuxr.com/api/public/v1/properties/{propertyId} \
--header 'Authorization: Bearer <token>'
{
"propertyId": "<string>",
"name": "<string>",
"propertyType": "SINGLE_SELECT",
"propertyOptions": [
{
"propertyOptionId": "<string>",
"name": "<string>",
"color": "GREY",
"order": "1"
}
],
"isUnique": true,
"isPHI": true,
"isPII": true
}