Returns notifications for specific target parameter.
GET
/api/notifications/{target}Authorizations
Parameters
Path Parameters
target*
Typestring
RequiredResponses
Successful
Samples
cURL
curl -X GET http://localhost/api/notifications/{target}
JavaScript
fetch("http://localhost/api/notifications/{target}")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/notifications/{target}");
Python
import requests
response = requests.get("http://localhost/api/notifications/{target}")
print(response.json())