v1

latestOpenAPI 3.0.02026-07-14198572488.4 KB
Password Strength

Generate a password that meets strength requirements.

Returns a random password that satisfies the platform's password rules.

post/v1/users/generate_password

Request body

lengthinteger

Desired password length (optional; min 16, max 72).

Example request

{
  "length": 16
}

Response

OK

successboolean

whether the request succeeded

errorsstring[]
messagesstring[] nullable

Example response

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