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