Class: Nylas::Grants
- Includes:
- ApiOperations::Delete, ApiOperations::Get, ApiOperations::Post, ApiOperations::Put
- Defined in:
- lib/nylas/resources/grants.rb
Overview
Grants
Instance Method Summary collapse
-
#create(request_body) ⇒ Array(Hash, String)
Create a Grant via Custom Authentication.
-
#destroy(grant_id:) ⇒ Array(TrueClass, String)
Delete a grant.
-
#find(grant_id:) ⇒ Array(Hash, String)
Return a grant.
-
#list(query_params: nil) ⇒ Array(Array(Hash), String)
Return all grants.
-
#update(grant_id:, request_body:) ⇒ Array(Hash, String)
Update a grant.
Methods inherited from Resource
Constructor Details
This class inherits a constructor from Nylas::Resource
Instance Method Details
#create(request_body) ⇒ Array(Hash, String)
Create a Grant via Custom Authentication.
39 40 41 42 43 44 |
# File 'lib/nylas/resources/grants.rb', line 39 def create(request_body) post( path: "#{api_uri}/v3/#{resource_name}/custom", request_body: request_body ) end |
#destroy(grant_id:) ⇒ Array(TrueClass, String)
Delete a grant.
62 63 64 65 66 67 68 |
# File 'lib/nylas/resources/grants.rb', line 62 def destroy(grant_id:) _, request_id = delete( path: "#{api_uri}/v3/grant/#{grant_id}" ) [true, request_id] end |
#find(grant_id:) ⇒ Array(Hash, String)
Return a grant.
29 30 31 32 33 |
# File 'lib/nylas/resources/grants.rb', line 29 def find(grant_id:) get( path: "#{api_uri}/v3/grant/#{grant_id}" ) end |
#list(query_params: nil) ⇒ Array(Array(Hash), String)
Return all grants.
18 19 20 21 22 23 |
# File 'lib/nylas/resources/grants.rb', line 18 def list(query_params: nil) get( path: "#{api_uri}/v3/grant", query_params: query_params ) end |
#update(grant_id:, request_body:) ⇒ Array(Hash, String)
Update a grant.
51 52 53 54 55 56 |
# File 'lib/nylas/resources/grants.rb', line 51 def update(grant_id:, request_body:) put( path: "#{api_uri}/v3/grant/#{grant_id}", request_body: request_body ) end |