This problem occurs when the requested resource (and/or operation combination) is not authorized for the requesting client (and or authorization context).
Your client application tried to perform an operation on a resource that it’s not authorized to perform in the given context.
Type URI | Title | Recommended HTTP Status Code | Reference |
---|---|---|---|
about:blank | See HTTP Status Code | N/A | RFC9457 |
Note A problem is generally not meant to be used for end-user input validation, but for client developer convenience.
Examples of a forbidden
problem details:
{
"type": "https://problems-registry.smartbear.com/forbidden",
"title": "Forbidden",
"detail": "The resource could not be returned as the requestor is not authorized",
"status": 403,
"code": "403-01"
}
{
"type": "about:blank",
"title": "Forbidden",
"detail": "The resource could not be returned as the requestor is not authorized",
"status": 403,
"code": "403-01"
}