v1

latestOpenAPI 3.0.02026-07-14198572488.4 KB
Account Users

Create first time password for the Account User

After a user has been invited, they will get a token to set their password for the first time. Use this route to set the user's password. NOTE: The token expires after a single use or 30 mins. If the user does not set their password within 30 minutes, you will need to re-invite them.

post/v1/users/{user_id}/password

Path parameters

user_idstring uuid required

Request body

passwordstring required

User password

Response

OK

successboolean

whether the request succeeded

errorsstring[]
messagesstring[] nullable

Example response

{
  "success": true,
  "errors": [],
  "messages": [],
  "result": {
    "success": true
  }
}