GET
/
conversations
/
{conversation_id}
/
variables
{
  "limit": 123,
  "has_more": true,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "value_type": "<string>",
      "value": "<string>",
      "description": "<string>",
      "created_at": 123,
      "updated_at": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication.

Path Parameters

conversation_id
string
required

Conversation ID.

Query Parameters

user
string
required

User identifier.

last_id
string

ID of the last record for pagination.

limit
integer
default:20

Number of items per page (Default 20, Max 100).

Required range: 1 <= x <= 100
variable_name
string

Filter by variable name.

Response

200
application/json

Successfully retrieved conversation variables.

The response is of type object.