@edgible-team/sdk
    Preparing search index...

    Interface ListJobsParams

    Filters for JobsClient.list.

    interface ListJobsParams {
        deviceId?: string;
        limit?: number;
        organizationId?: string;
        status?:
            | "timeout"
            | "running"
            | "pending"
            | "failed"
            | "sent"
            | "completed"
            | "cancelled";
    }
    Index

    Properties

    deviceId?: string
    limit?: number

    Page size; backend default 50.

    organizationId?: string

    Org to list within. Defaults server-side to the caller's first organization; pass explicitly to disambiguate multi-org callers.

    status?:
        | "timeout"
        | "running"
        | "pending"
        | "failed"
        | "sent"
        | "completed"
        | "cancelled"