# 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` ## Example Response ```json { "type": "https://api.dinie.com.br/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](/apis/concepts/authentication) -- Credential management - [Error Handling guide](/apis/concepts/errors) -- Full error handling patterns and code examples