Auth
Returns a JSON with the user's full name and a TOKEN used for all operations.
POST
http(s)://MyThinfinityServer:[Port]/__ds@[your-domain]__/dirsvc/api/v1/auth/login
Headers
Name
Type
Description
Authorization
String
Bearer TOKEN
Request Body
Name
Type
Description
"username"
String
The user name for login
"password"
String
The password for login in clear text
Changes a user's password to a new one
POST
http(s)://MyThinfinityServer:[Port]/__ds@[your-domain]__/dirsvc/api/v1/auth/changepassword
Headers
Name
Type
Description
Authorization
String
Bearer TOKEN
Request Body
Name
Type
Description
"userid"*
String
"userid": "myUser"
"oldPassword"*
String
"oldPassword": "myOldPassword",
"newPassword"*
String
"newPassword": "myNewPassword"
Request Example:
JSON in Body
Last updated
Was this helpful?