Get forum following status.
GET
/api/forum/{regionId}/followAuthorizations
Parameters
Path Parameters
regionId*
Typestring
RequiredResponses
Success
Samples
cURL
curl -X GET http://localhost/api/forum/{regionId}/follow
JavaScript
fetch("http://localhost/api/forum/{regionId}/follow")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/forum/{regionId}/follow");
Python
import requests
response = requests.get("http://localhost/api/forum/{regionId}/follow")
print(response.json())