curl --request PUT \
--url https://api.sanka.com/v1/public/properties/{object_name}/{property_ref} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"internal_name": "<string>",
"type": "<string>",
"description": "<string>",
"number_format": "<string>",
"choice_values": {},
"conditional_choice_mapping": {},
"tag_values": [
"<string>"
],
"unique": true,
"required_field": true,
"multiple_select": true,
"show_badge": true,
"badge_color": "<string>",
"order": 123
}
'{
"ok": true,
"status": "<string>",
"object": "<string>",
"property_id": "<string>",
"ctx_id": "<string>"
}curl --request PUT \
--url https://api.sanka.com/v1/public/properties/{object_name}/{property_ref} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"internal_name": "<string>",
"type": "<string>",
"description": "<string>",
"number_format": "<string>",
"choice_values": {},
"conditional_choice_mapping": {},
"tag_values": [
"<string>"
],
"unique": true,
"required_field": true,
"multiple_select": true,
"show_badge": true,
"badge_color": "<string>",
"order": 123
}
'{
"ok": true,
"status": "<string>",
"object": "<string>",
"property_id": "<string>",
"ctx_id": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes