GET /api/conversations/{conversationId}
GET
/api/conversations/{conversationId}Authorizations
Parameters
Path Parameters
conversationId*
Typestring
RequiredQuery Parameters
messagesLimit
How many messages to return.
Typestring
Responses
GET
/api/conversations/{conversationId}Samples
cURL
curl -X GET http://localhost/api/conversations/{conversationId}
JavaScript
fetch("http://localhost/api/conversations/{conversationId}")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/conversations/{conversationId}");
Python
import requests
response = requests.get("http://localhost/api/conversations/{conversationId}")
print(response.json())