For the complete documentation index, see llms.txt. For a full content snapshot, see llms-full.txt. Append .md to any kestra.io/docs/* URL for plain Markdown.

The submitted password does not satisfy the instance’s configured password policy.

  • HTTP status422 Unprocessable Content
  • typehttps://kestra.io/docs/api-reference/problems/password-policy-violation

When you get it

  • A password is set or changed in a way that breaks one or more policy rules.

Example response

A response reporting this problem:

{
"type": "https://kestra.io/docs/api-reference/problems/password-policy-violation",
"title": "Password policy not met",
"status": 422,
"detail": "Password policy not met",
"instance": "/api/v1/users/5Dv3JXqPzT/password",
"errors": [
{
"detail": "must be at least 12 characters long"
},
{
"detail": "must contain at least one digit"
}
]
}

How to handle it

One errors entry is reported per unmet rule, so the whole list can be shown at once instead of one rule per attempt.

For the members every problem document carries, see Problem Details.

Was this page helpful?