Feature Restrictions

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

FieldDescription
codeInternal error code 209 specifically indicates a plan restriction
errorHuman-readable error message explaining the restriction
pathThe API endpoint path that was accessed
timestampISO 8601 timestamp when the error occurred
http_statusHTTP status code 403 (Forbidden)
http_reasonHTTP status reason phrase
request_idUnique identifier for the request (useful for support)