GET
/
conversation
/
v1
/
conversations
/
{conversationId}
curl --request GET \
  --url https://api.sandbox.asapp.com/conversation/v1/conversations/{conversationId} \
  --header 'asapp-api-id: <api-key>' \
  --header 'asapp-api-secret: <api-key>'
{
  "id": "01BX5ZZKBKACTAV9WEVGEMMVRZ",
  "externalId": "id-111",
  "agent": {
    "externalId": "agent-111",
    "name": "agent-x"
  },
  "customer": {
    "externalId": "customer-x",
    "name": "customer-name-x"
  },
  "metadata": {
    "organizationalGroup": "some-group",
    "subdivision": "some-division",
    "queue": "some-queue"
  }
}

Authorizations

asapp-api-id
string
header
required
asapp-api-secret
string
header
required

Path Parameters

conversationId
string
required

The identifier for a conversation.

Response

200
application/json
Successfully fetched conversation

Represents a conversation between an agent and a customer.