1. Contact Properties
Hatif
  • Rate Limiting
  • Account API
    • Service Login
      POST
  • Channels API
    • Get Channels
      GET
  • Support API
    • Upload Image, Video, or PDF
      POST
    • Upload Audio File
      POST
  • Whatsapp API
    • Send Text
      POST
    • Send Template
      POST
    • Send Image
      POST
    • Send Audio
      POST
    • Send Video
      POST
    • Send File
      POST
    • List Templates (Service Account)
      GET
  • Contact
    • Set Property Value on Contact
      PUT
    • Search Contacts
      POST
    • Delete Property Value on Contact
      DELETE
    • Create Contact
      POST
    • Update Contact
      PUT
    • Get Contacts
      GET
    • Get Contact By Id
      GET
    • Create Bulk Contacts vCards
      POST
    • Contacts History
      GET
  • Contact Properties
    • List Contact Properties
      GET
    • Contact Properties Statistics
      POST
    • Create Contact Property
      POST
    • Update Contact Property
      PUT
    • Delete Contact Property
      DELETE
  • Workspace API
    • Get Workspace Users
  • Conversations API
    • Get Conversation Timeline
    • List Conversations
    • Create Conversation
    • Assign Conversation
    • Get Conversation
  • Outbound IVR API
    • Create Outbound IVR
  • Tags API
    • Tag a conversation
    • Create Tag
    • Delete Tag
    • Update Tag
    • List Tags
  • Conversations - Service Account
  • Call Webhook
  • WhatsApp Message Webhook
  • Schemas
    • Call Webhook
    • WhatsApp Message Webhook
    • ServiceAccountTemplateDto
    • ConversationDto
    • CreateTagDto
    • ServiceAccountTemplateParameterDto
    • ChannelConversationDto
    • UpdateTagDto
    • TemplateParameterDto
    • TagDto
    • ParameterValueDto
    • ConversationTimelineDto
    • PagedResultOfTagDto
    • ChannelNotFoundError
    • AiSummaryDto
    • ReplyInfoDto
    • InternalThreadDto
    • LocationMessageDto
    • AssignationInfoDto
    • PagedResultOfConversationDto
    • PagedResultOfConversationTimelineDto
  1. Contact Properties

Update Contact Property

PUT
/v1/contact-property-definitions/id
Updates an existing custom property definition's display name, required flag, and (for Select type) its list of options.
⚠️ type cannot be changed here — there's no type field on this request. A property created as Text stays Text forever; changing its type requires deleting and recreating it (see Delete Contact Property for the soft-delete details and data-loss implications).

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.voxa.sa/v1/contact-property-definitions/id' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "name": "Status3",
    "isRequired": true,
    "selectOptions": [
        {
            "value": "Lead",
            "color": "#FF5733"
        },
        {
            "value": "Customer",
            "color": "#33FF57"
        },
        {
            "value": "VIP",
            "color": "#5733FF"
        },
        {
            "value": "Churned",
            "color": "#888888"
        }
    ]
}'
Response Response Example
{
    "workspaceId": "string",
    "name": "string",
    "key": "string",
    "type": 0,
    "isRequired": true,
    "selectOptions": [
        "string"
    ],
    "lastModificationTime": "string",
    "lastModifierId": "string",
    "creationTime": "string",
    "creatorId": "string",
    "id": "string"
}
Modified at 2026-06-21 13:13:05
Previous
Create Contact Property
Next
Delete Contact Property
Built with