Skip to content

GET /api/user/{userId}/verificationhistory

GET
/api/user/{userId}/verificationhistory

Authorizations

Parameters

Path Parameters

userId*
Typestring
Required

Responses

Not logged in.

Samples

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