License API
Change Password
5min
schema request body type changepasswordrequestbody = { username string, password string, new password string, } json schema { "$schema" "https //json schema org/draft/2020 12/schema", "type" "object", "properties" { "username" { "type" "string" }, "password" { "type" "string" }, "new password" { "type" "string" } }, "required" \["username", "password", "new password"], "additionalproperties" false } response body type changepasswordresponsebody = 'password changed' json schema { "$schema" "https //json schema org/draft/2020 12/schema", "type" "string", } errors if an error occurs, the response will have an http status code of 400 or higher, and the response body will contain an error description in the following format { status number, code string, message string } json schema { "$schema" "https //json schema org/draft/2020 12/schema", "type" "object", "properties" { "status" { "type" "number" }, "code" { "type" "string" }, "message" { "type" "string" } }, "required" \[ "status", "code", "message" ], "additionalproperties" false } list of exceptions change password not allowed (400) change password not allowed for the company missing headers (400) some headers are missing missing parameters (400) some parameters are missing in the request { params }