GET /api/conversations
GET
/api/conversationsAuthorizations
Parameters
Query Parameters
limit
How many conversations to return.
Typestring
offset
Offset returned conversations.
Typestring
Responses
GET
/api/conversationsSamples
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())