Skip to content

Get forum following status.

GET
/api/forum/{regionId}/follow

Authorizations

Parameters

Path Parameters

regionId*
Typestring
Required

Responses

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