Some features in the Frisbii Billing and Pay API may be restricted based on your account's subscription plan. When you attempt to access a feature that is not available on your current plan, the API will return an error response to inform you about the restriction.
Feature Restriction Error Response
When you try to access a feature that is not available on your current plan, the API will respond with a 403 Forbidden
status code and the following error:
{
"code": 209,
"error": "Accessed feature is not available on the current plan for your account",
"path": "/some/api/path",
"timestamp": "2025-08-04T12:46:01.853+00:00",
"http_status": 403,
"http_reason": "Forbidden",
"request_id": "some_request_id"
}
Error Response Fields
Field | Description |
---|---|
code | Internal error code 209 specifically indicates a plan restriction |
error | Human-readable error message explaining the restriction |
path | The API endpoint path that was accessed |
timestamp | ISO 8601 timestamp when the error occurred |
http_status | HTTP status code 403 (Forbidden) |
http_reason | HTTP status reason phrase |
request_id | Unique identifier for the request (useful for support) |