Skip to main content

Read a conversation result

GET/api/v2/conversations/{conversation_id}

Authentication: An API key is required.

cURL example

curl -X GET \
  'https://app.intracord.hu/api/v2/conversations/{conversation_id}' \
  -H "X-API-Key: $INTRACORD_API_KEY"

Parameters

NameLocationTypeDescription
conversation_idrequiredpathinteger

Responses

200Successful Response
application/json
View schema
{
  "properties": {
    "data": {
      "$ref": "#/components/schemas/V2_Conversation"
    }
  },
  "type": "object",
  "required": [
    "data"
  ],
  "title": "Resource[Conversation]"
}
401Unauthorized
application/json
View schema
{
  "properties": {
    "error": {
      "$ref": "#/components/schemas/V2_ErrorDetail"
    }
  },
  "type": "object",
  "required": [
    "error"
  ],
  "title": "ErrorResponse"
}
403Forbidden
application/json
View schema
{
  "properties": {
    "error": {
      "$ref": "#/components/schemas/V2_ErrorDetail"
    }
  },
  "type": "object",
  "required": [
    "error"
  ],
  "title": "ErrorResponse"
}
404Not Found
application/json
View schema
{
  "properties": {
    "error": {
      "$ref": "#/components/schemas/V2_ErrorDetail"
    }
  },
  "type": "object",
  "required": [
    "error"
  ],
  "title": "ErrorResponse"
}
422Unprocessable Content
application/json
View schema
{
  "properties": {
    "error": {
      "$ref": "#/components/schemas/V2_ErrorDetail"
    }
  },
  "type": "object",
  "required": [
    "error"
  ],
  "title": "ErrorResponse"
}