Skip to content

GET /api/user/{userId}/passhistory

GET
/api/user/{userId}/passhistory

Authorizations

Parameters

Path Parameters

userId*
Typestring
Required

Responses

Not logged in.

Samples

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