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

List Contact Properties

GET
/v1/contact-property-definitions
Returns every custom property field defined for the workspace the schema for contact custom fields. This is the endpoint referenced elsewhere (Set/Delete Property Value on Contact, Search Contacts) for discovering valid propertyId values.
Request: none. No query parameters, no pagination. Always returns the full list of property definitions for the workspace in one call.
Fields:
key — an auto-generated slug from name, set at creation, used internally. Not something you pass when setting a value (use id as the propertyId for that).
type — 1 = Text, 2 = Number, 3 = Select, 4 = Date.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200OK
application/json
Full list of property definitions for the workspace, oldest first.
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.voxa.sa/v1/contact-property-definitions' \
--header 'Authorization: Bearer <token>'
Response Response Example
Success Example
{
    "workspaceId": "d307b8...............",
    "name": "جديد",
    "key": "جديد",
    "type": 1,
    "isRequired": false,
    "selectOptions": [],
    "lastModificationTime": null,
    "lastModifierId": null,
    "creationTime": "2026-06-19T13:20:22.441968",
    "creatorId": "3a1dc2...............",
    "id": "3a21f2..............."
}
Modified at 2026-06-21 11:13:19
Previous
Contacts History
Next
Contact Properties Statistics
Built with