Interface SignageMediaQueryOptions

Allowable query parameters for systems index endpoint

interface SignageMediaQueryOptions {
    _poll?: boolean;
    authority_id?: string;
    cache?: number;
    fields?: string;
    limit?: number;
    offset?: number;
    q?: string;
}

Hierarchy

  • PlaceResourceQueryOptions
    • SignageMediaQueryOptions

Properties

_poll?: boolean

Whether the request is a API poll request

authority_id?: string

ID of the authority to filter the returned values on

cache?: number

Number of milliseconds to cache the query response

fields?: string

Comma seperated list of fields to apply the query to

limit?: number

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

offset?: number

Offsets of the results to return. Max 10000

q?: string