Anchorage API reference
    Preparing search index...

    Per-record outcome of a batch decide. ok: false carries the reason — code mirrors the HTTP status the same failure would produce on the single-record decide route ('not-found' 404, 'conflict' 409, 'forbidden' 403 — separation of duties, 'invalid' 400, 'error' 500).

    interface BatchDecideItem {
        code?: "not-found" | "conflict" | "forbidden" | "invalid" | "error";
        error?: string;
        id: string;
        ok: boolean;
        record?: ApprovalRecord;
        resume?: ResumeOutcome;
    }
    Index

    Properties

    code?: "not-found" | "conflict" | "forbidden" | "invalid" | "error"
    error?: string
    id: string
    ok: boolean
    resume?: ResumeOutcome