# Forbidden

The authenticated credentials do not have permission to perform the requested action. The token is valid, but the associated account lacks the required access level.

**HTTP Status:** `403 Forbidden`

## Error Codes

| Code | Description |
|  --- | --- |
| `forbidden` | The authenticated account does not have permission to perform this action |


## Example Response


```json
{
  "type": "https://docs.dinie.com/errors/forbidden",
  "title": "Forbidden",
  "status": 403,
  "detail": "Your credentials do not have permission to perform this action.",
  "code": "forbidden"
}
```

## How to Resolve

- Verify that your API credentials have the correct permissions for the endpoint you are calling.
- Some endpoints may require elevated access. Contact Dinie support if you believe your account should have access to this resource.
- Ensure you are not using sandbox credentials against production resources, or vice versa.


## See Also

- [Authentication guide](/en-us/apis/concepts/authentication) -- Credential management
- [Error Handling guide](/en-us/apis/concepts/errors) -- Full error handling patterns and code examples