Skip to main content
GET
/
poll
/
api
/
all
Get all conversations (flows) from your company
curl --request GET \
  --url https://main.treble.ai/poll/api/all \
  --header 'Authorization: <authorization>'
[
  {
    "id": 1,
    "name": "First conversation"
  },
  {
    "id": 2,
    "name": "CRM integration"
  }
]

Headers

Authorization
string
required

Authorization API Key. Can be obtained at https://app.treble.ai/en/dashboard/settings/developers

Response

List of conversations obtained correctly

id
integer
required

Unique ID of the conversation

name
string
required

Name of the conversation

I