Skip to content

List events for region and groups.

GET
/api/region/{regionId}/events

Authorizations

api_key
Type: API Key (header: X-CSRF-Token)

Parameters

Path Parameters

regionId*
Typestring
Required

Responses

Success
Authorization
api_key
Variables
Key
Value
regionId*
cURL
curl -X GET \
'http://localhost/api/region/{regionId}/events'

Samples

cURL
curl -X GET http://localhost/api/region/{regionId}/events
JavaScript
fetch("http://localhost/api/region/{regionId}/events")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/region/{regionId}/events");
Python
import requests
response = requests.get("http://localhost/api/region/{regionId}/events")
print(response.json())