GET /api/user/{userId}/passhistory
GET
/api/user/{userId}/passhistoryAuthorizations
Parameters
Path Parameters
userId*
Typestring
RequiredResponses
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())