Module: Nylas::GrantsApiOperations::Destroy

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

Overview

Deletes a Nylas object.

Instance Method Summary collapse

Instance Method Details

#destroy(identifier:, object_id:, query_params: {}) ⇒ Array(TrueClass, String)

Deletes a Nylas object.

Parameters:

  • identifier (String)

    Grant ID or email account from which to delete an object.

  • object_id (String)

    Object ID.

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

    Query params to pass to the request.

Returns:

  • (Array(TrueClass, String))

    True and the API Request ID for the delete operation.



89
90
91
92
93
94
95
96
# File 'lib/nylas/handler/grants_api_operations.rb', line 89

def destroy(identifier:, object_id:, query_params: {})
  _, request_id = delete(
    path: "#{api_uri}/v3/grants/#{identifier}/#{resource_name}/#{object_id}",
    query_params: query_params
  )

  [true, request_id]
end