Module: Nylas::GrantsApiOperations::List

Includes:
ApiOperations::Get
Included in:
Calendars, Events, Messages, Webhooks
Defined in:
lib/nylas/handler/grants_api_operations.rb

Overview

Lists Nylas objects.

Instance Method Summary collapse

Instance Method Details

#list(identifier:, query_params: {}) ⇒ Array(Hash, String)

Lists Nylas objects.

Parameters:

  • identifier (String)

    Grant ID or email account to query.

  • query_params (Hash, {}) (defaults to: {})

    Query params to pass to the request.

Returns:

  • (Array(Hash, String))

    List of Nylas objects and API Request ID.



36
37
38
39
40
41
# File 'lib/nylas/handler/grants_api_operations.rb', line 36

def list(identifier:, query_params: {})
  get(
    path: "#{api_uri}/v3/grants/#{identifier}/#{resource_name}",
    query_params: query_params
  )
end