GET /api/user/{userId}/conversation
GET
/api/user/{userId}/conversationAuthorizations
api_key
Type: API Key (header: X-CSRF-Token)
Parameters
Path Parameters
userId*
Typestring
RequiredResponses
GET
/api/user/{userId}/conversationAuthorization
api_key
Variables
Key
Value
userId*
cURL
curl -X GET \
'http://localhost/api/user/{userId}/conversation'
Samples
cURL
curl -X GET http://localhost/api/user/{userId}/conversation
JavaScript
fetch("http://localhost/api/user/{userId}/conversation")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/user/{userId}/conversation");
Python
import requests
response = requests.get("http://localhost/api/user/{userId}/conversation")
print(response.json())