Interface PlaceSettingsQueryOptions

Allowable query parameters for settings index endpoint

interface PlaceSettingsQueryOptions {
    _poll?: boolean;
    cache?: number;
    fields?: string;
    limit?: number;
    offset?: number;
    parent_id?: string;
    q?: string;
}

Hierarchy

  • PlaceResourceQueryOptions
    • PlaceSettingsQueryOptions

Properties

_poll?: boolean

Whether the request is a API poll request

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

parent_id?: string

ID of the parent zone, system, module or driver to grab settings for

q?: string