API Problems
Loading...
Forbidden
Error response when the request is not allowed for the current project or configuration
The API returns a 403 Forbidden status with this problem type when the request is understood, but not allowed.
Response Format
{
"type": "https://docs.tambo.co/reference/problems/forbidden",
"status": 403,
"title": "Forbidden",
"detail": "Project does not allow overriding the system prompt with initial messages",
"instance": "/threads"
}Fields
type- Stable URI identifying this problem typestatus- HTTP status code (always403)title- Short summary of the problem (alwaysForbidden)detail- Human-readable description explaining why the request was rejectedinstance- The specific request path that triggered this error
Handling
When you receive this error:
- Confirm your project configuration allows the operation you're attempting
- Update the request to comply with the current configuration (or change the configuration)
- Retry the request
See Also
- REST API Reference - Complete API documentation
- RFC 9457 Problem Details - Standard for error responses