Forbidden

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 URITitleRecommended HTTP Status CodeReference
about:blankSee HTTP Status CodeN/ARFC9457

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"    
}