GET /ap1/v1/account/{{accountId}}/password/reset
Parameters:
(JSON) email: {{account's email}}
This request will submit a message to the email specified on the account's file if the passed in parameter of the email matches. This email will contain a clickable link with a verification code as a query parameter. This verification code will have a configurable expiration (configuration is done via iamus.json), it will default to 24 hours.
POST /api/v1/account/{accountId}/password/reset
Parameters:
(query) v: {{verification code}}
If the verification code is correct, this request will reset the user's password to a randomly generated one. It will then submit a message to the email specified on the account's file with the newly generated password. The verification code will be deleted from the server now that it has been used.
GET/ap1/v1/account/{{accountId}}/password/resetParameters:
This request will submit a message to the email specified on the account's file if the passed in parameter of the email matches. This email will contain a clickable link with a verification code as a query parameter. This verification code will have a configurable expiration (configuration is done via iamus.json), it will default to 24 hours.
POST/api/v1/account/{accountId}/password/resetParameters:
If the verification code is correct, this request will reset the user's password to a randomly generated one. It will then submit a message to the email specified on the account's file with the newly generated password. The verification code will be deleted from the server now that it has been used.