Dixa · Example Payload

Getconversationsconversationid

Get a conversation by id.

Customer ServiceConversationalOmnichannelCXHelp DeskChatKnowledge Base

Getconversationsconversationid is an example object payload from Dixa, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarydescriptionparametersexample_request

Example Payload

Raw ↑
{
  "operationId": "getConversationsConversationid",
  "method": "GET",
  "path": "/beta/conversations/{conversationId}",
  "summary": "Get conversation",
  "description": "Get a conversation by id.",
  "parameters": [
    {
      "name": "conversationId",
      "in": "path",
      "required": true,
      "schema": {
        "type": "integer",
        "format": "int64"
      }
    }
  ],
  "example_request": {
    "method": "GET",
    "url": "https://dev.dixa.io/beta/conversations/{conversationId}",
    "headers": {
      "Authorization": "Bearer ${API_TOKEN}",
      "Content-Type": "application/json"
    }
  }
}