Method: Falcon::InstallationTokensApi#tokens_query

Defined in:
lib/crimson-falcon/api/installation_tokens_api.rb

#tokens_query(opts = {}) ⇒ MsaspecQueryResponse

Search for tokens by providing an FQL filter and paging details.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :offset (Integer)

    The offset to start retrieving records from.

  • :limit (Integer)

    The maximum records to return. [1-1000]. Defaults to 50.

  • :sort (String)

    The property to sort by (e.g. created_timestamp.desc).

  • :filter (String)

    The filter expression that should be used to limit the results (e.g., `status:'valid'`).

Returns:



354
355
356
357
# File 'lib/crimson-falcon/api/installation_tokens_api.rb', line 354

def tokens_query(opts = {})
  data, _status_code, _headers = tokens_query_with_http_info(opts)
  data
end