The Random Password Generation API provides operations to generate a random password.
Generates a random password based on the request parameters provided
required | object (RandomPasswordCharacterOptions) |
| num_chars required | integer The desired length for the password |
required | object (RawJSONWebKey) A JSON Web Key formatted in accordance with RFC 7517. |
OK
Bad request
Unauthorized
{- "character_options": {
- "digits": true,
- "lower_case": true,
- "special_characters": true,
- "upper_case": true
}, - "num_chars": 0,
- "public_key": {
- "alg": "EdDSA",
- "crv": "Ed25519",
- "d": "string",
- "dp": "string",
- "dq": "string",
- "e": "string",
- "k": "string",
- "kid": "/regex/",
- "kty": "EC",
- "n": "string",
- "p": "string",
- "q": "string",
- "qi": "string",
- "use": "string",
- "x": "string",
- "x5c": [
- "string"
], - "x5t": "string",
- "x5t#S256": "string",
- "x5u": "string",
- "y": "string"
}
}{- "password_jwe": "string"
}