Interface PlaceSystemsQueryOptions

Allowable query parameters for systems index endpoint

interface PlaceSystemsQueryOptions {
    _poll?: boolean;
    bookable?: boolean;
    cache?: number;
    capacity?: number;
    email?: string;
    features?: string;
    fields?: string;
    limit?: number;
    module_id?: string;
    offset?: number;
    public?: boolean;
    q?: string;
    ref?: string;
    signage?: boolean;
    trigger_id?: string;
    zone_id?: string;
}

Hierarchy (View Summary)

Properties

_poll?: boolean

Whether the request is a API poll request

bookable?: boolean

Return only bookable or non-bookable rooms (returns both when not specified)

cache?: number

Number of milliseconds to cache the query response

capacity?: number

Return only rooms with capacity equal or greater than provided

email?: string

Return only systems whose resource address matches one of the emails provided

features?: string

Comma separated list of features. Return only rooms with all requested features

fields?: string

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

limit?: number

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

module_id?: string

Return only systems which have this module ID

offset?: number

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

public?: boolean

Return systems which are public

q?: string
ref?: string

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

signage?: boolean

Only return systems that have signage capabilities

trigger_id?: string

Return systems using this trigger ID

zone_id?: string

Zone ID to filter the returned values on