Get a single forum thread including some of its messages.
GET
/api/forum/thread/{threadId}Authorizations
Parameters
Path Parameters
threadId*
which ID to return threads for
Typeinteger
RequiredResponses
Success
Samples
cURL
curl -X GET http://localhost/api/forum/thread/{threadId}
JavaScript
fetch("http://localhost/api/forum/thread/{threadId}")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/forum/thread/{threadId}");
Python
import requests
response = requests.get("http://localhost/api/forum/thread/{threadId}")
print(response.json())