1. Conversations API
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
    • Contact Properties Statistics
    • Create Contact Property
    • Update Contact Property
    • Delete Contact Property
  • Workspace API
    • Get Workspace Users
  • Conversations API
    • Get Conversation Timeline
      GET
    • List Conversations
      GET
    • Create Conversation
      POST
    • Assign Conversation
      POST
    • Get Conversation
      GET
  • 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. Conversations API

Get Conversation

GET
/v2/conversations/service-account/conversationId
Returns a single conversation's full summary — same shape as each item in the List Conversations response, just fetched directly by ID instead of by channel/filter.
conversationId is supplied directly in the URL path.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or

Responses

🟢200OK
application/json
Returns the conversation.
Bodyapplication/json

🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.voxa.sa/v2/conversations/service-account/conversationId' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "id": "3a21fc...............",
    "sentiment": 1,
    "status": 1,
    "lastActivityAt": "2026-06-21T13:15:47.459339",
    "contactId": "3a21fb...............",
    "contactName": "Ahmed Noshy | Hatif Co",
    "contactType": 1,
    "phoneNumber": "+966501234567",
    "channelId": "3a1bf3...............",
    "assigneeId": null,
    "assignedAiAgentId": null,
    "isAiAssignee": false,
    "assigneeName": null,
    "channel": {
        "id": "3a1bf3...............",
        "name": "هاتف",
        "type": 3,
        "icon": "📱",
        "phoneNumber": null
    },
    "lastEventSourceType": null,
    "lastEventDirection": null,
    "lastEventStatus": "",
    "lastEventPreviewBody": null,
    "lastEventOccurredAt": null,
    "lastEventsCount": 0,
    "tags": [],
    "unreadCount": 0,
    "isPinned": false
}
Modified at 2026-06-22 15:42:24
Previous
Assign Conversation
Next
Create Outbound IVR
Built with