Skip to content

GET /api/report/user/{userId}

GET
/api/report/user/{userId}

Authorizations

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

Parameters

Path Parameters

userId*
Typestring
Required

Responses

Authorization
api_key
Variables
Key
Value
userId*
cURL
curl -X GET \
'http://localhost/api/report/user/{userId}'

Samples

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