List Conversations
curl --request GET \
--url https://api.agentline.cloud/v1/messages/conversations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.agentline.cloud/v1/messages/conversations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.agentline.cloud/v1/messages/conversations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Messages
List Conversations
List all SMS conversations for your AI agents.
Returns conversation threads, optionally filtered by AI agent. Each conversation represents an ongoing SMS exchange between an AI agent’s phone number and an external contact.
GET
/
v1
/
messages
/
conversations
List Conversations
curl --request GET \
--url https://api.agentline.cloud/v1/messages/conversations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.agentline.cloud/v1/messages/conversations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.agentline.cloud/v1/messages/conversations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}