FileMaker Data API Tools API - v1.2.0
    Preparing search index...
    interface RateLimitDecision {
        ok: boolean;
        retryAfterMs: number;
        reason?: "rate" | "budget";
        remaining: { tokens: number; budget: number };
    }
    Index

    Properties

    ok: boolean
    retryAfterMs: number

    When non-ok, ms the client should wait before retrying. 0 for budget-exhausted (no retry).

    reason?: "rate" | "budget"

    Why the request was denied (when !ok).

    remaining: { tokens: number; budget: number }

    Snapshot of remaining counters — useful for logging.