Interface PlaceSystemTriggersQueryOptions

Allowable query parameters for system triggers index endpoint

interface PlaceSystemTriggersQueryOptions {
    _poll?: boolean;
    as_of?: number;
    cache?: number;
    complete?: boolean;
    fields?: string;
    important?: boolean;
    limit?: number;
    offset?: number;
    q?: string;
    ref?: string;
    trigger_id?: string;
    triggered?: boolean;
}

Hierarchy (View Summary)

Properties

_poll?: boolean

Whether the request is a API poll request

as_of?: number

Return triggers updated before the time specified (unix epoch)

cache?: number

Number of milliseconds to cache the query response

complete?: boolean

Provide the control system details

fields?: string

Comma separated list of fields to search. Accepts wildcard expressions and boost relevance scores using caret ^ operator.

important?: boolean

Only return triggers marked as important

limit?: number

Number of results to return. Defaults to 20. Max 500

offset?: number

Use ref for pagination. Offset of the results to return. Max 10000

q?: string
ref?: string

Token for accessing the next page of results, provided in the Link header

trigger_id?: string

Filter by a particular trigger type

triggered?: boolean

Only return triggers that have recently been triggered