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

Get Contact By Id

GET
/v1/contacts/{{contactId}}
Fetches a single contact's full details by its GUID, scoped to the calling workspace.
If the contact doesn't exist, or belongs to a different workspace → a real 404 Not Found with a proper error body (an ABP EntityNotFoundException), not a generic masked 500.
If found → returns the full contact, the same ContactDto shape used everywhere else (includes customProperties, notes, etc.).

Request

None

Responses

🟢200OK
application/json
Returns the full contact.
Bodyapplication/json

🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff 'https://api.voxa.sa/v1/contacts/{{contactId}}'
Response Response Example
200 - Success Example
{
    "workspaceId": "d307b8...............",
    "name": "Ahmed Noshy",
    "phoneNumber": "+966501234567",
    "contactType": 1,
    "email": "Noshy@hatif.io",
    "company": "HATIF Co",
    "position": "Product Engineer",
    "customFields": {
        "source": "landing-page"
    },
    "notes": [],
    "customProperties": [],
    "lastModificationTime": "2026-06-19T14:21:51.848705",
    "lastModifierId": null,
    "creationTime": "2026-06-09T08:05:17.467676",
    "creatorId": null,
    "id": "3a21bd..............."
}
Modified at 2026-06-19 18:38:32
Previous
Get Contacts
Next
Create Bulk Contacts vCards
Built with