GET /api/conversations
GET
/api/conversationsAuthorizations
api_key
Type: API Key (header: X-CSRF-Token)
Parameters
Query Parameters
limit
How many conversations to return.
Typestring
offset
Offset returned conversations.
Typestring
Responses
GET
/api/conversationsAuthorization
api_key
Variables
Key
Value
limit
offset
cURL
curl -X GET \
'http://localhost/api/conversations'
Samples
cURL
curl -X GET http://localhost/api/conversations
JavaScript
fetch("http://localhost/api/conversations")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/conversations");
Python
import requests
response = requests.get("http://localhost/api/conversations")
print(response.json())