Skip to main content

401 Unauthorized

Error Code: 401

This error occurs when authentication credentials are invalid.

Error Message

  • "Invalid password"

Causes

  • The authentication information, such as the username or password, may be incorrect.

Examples

  • The following is an example of what happens when the password is incorrect.
curl -X POST https://example/ca -H content-type:application/json -u <username>:<invalid password> -d '{...}'

Output:

{"statusCode":401,"error":"Unauthorized","message":"Invalid password"}

Resolution

  • Please verify that your username and password are correct.