1. Contact
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

Update Contact

PUT
/v1/contacts/{{contactId}}
Updates an existing contact's profile fields (name, email, company, position), appends a note, and merges legacy custom fields. The contact is looked up by CONTACT_ID in the URL — not by phone number (unlike Create Contact, which upserts by phone number).
Returns the full updated contact, wrapped under an id key (same naming quirk as Create Contact — the value is the full contact object, not an ID string)
Check Request for the body params.

Request

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Returns the updated contact — wrapped under an id key. Despite the key name, the value is the full contact object, not an ID string (same quirk as Create Contact).
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff --request PUT 'https://api.voxa.sa/v1/contacts/{{contactId}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Ahmed Al-Otaibi",
    "company": "Acme Co",
    "position": "Manager",
    "email": "ahmed@example.com"
}'
Response Response Example
{
    "id": {
        "workspaceId": "d307b8...............",
        "name": "Ahmed Noshy",
        "phoneNumber": "+966501234567",
        "contactType": 1,
        "email": "Noshy@hatif.io",
        "company": "HATIF Co",
        "position": "Engineer",
        "customFields": {
            "source": "landing-page"
        },
        "notes": [],
        "customProperties": [],
        "lastModificationTime": "2026-06-19T14:21:51.8487055+00:00",
        "lastModifierId": null,
        "creationTime": "2026-06-09T08:05:17.467676",
        "creatorId": null,
        "id": "3a21bd..............."
    }
}
Modified at 2026-06-19 15:30:29
Previous
Create Contact
Next
Get Contacts
Built with