Skip to content

GET /api/conversations

GET
/api/conversations

Authorizations

Parameters

Query Parameters

limit

How many conversations to return.

Typestring
offset

Offset returned conversations.

Typestring

Responses

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())