grants
          Grants
  
            Bases: ListableApiResource, FindableApiResource, CreatableApiResource, UpdatableApiResource, DestroyableApiResource
Source code in nylas/resources/grants.py
              | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |  | 
          create(request_body)
  Create a Grant.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| request_body | CreateGrantRequest | The values to create the Grant with. | required | 
Returns:
| Type | Description | 
|---|---|
| Response[Grant] | The created Grant. | 
Source code in nylas/resources/grants.py
            | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |  | 
          destroy(grant_id)
  Delete a Grant.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| grant_id | str | The ID of the Grant to delete. | required | 
Returns:
| Type | Description | 
|---|---|
| DeleteResponse | The deletion response. | 
Source code in nylas/resources/grants.py
            | 89 90 91 92 93 94 95 96 97 98 99 100 |  | 
          find(grant_id)
  Return a Grant.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| grant_id | str | The ID of the Grant to retrieve. | required | 
Returns:
| Type | Description | 
|---|---|
| Response[Grant] | The Grant. | 
Source code in nylas/resources/grants.py
            | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |  | 
          list(query_params)
  Return all Grants.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| query_params | ListGrantsQueryParams | The query parameters to include in the request. | required | 
Returns:
| Type | Description | 
|---|---|
| ListResponse[Grant] | A list of Grants. | 
Source code in nylas/resources/grants.py
            | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |  | 
          update(grant_id, request_body)
  Update a Grant.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| grant_id | str | The ID of the Grant to update. | required | 
| request_body | UpdateGrantRequest | The values to update the Grant with. | required | 
Returns:
| Type | Description | 
|---|---|
| Response[Grant] | The updated Grant. | 
Source code in nylas/resources/grants.py
            | 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |  |