folders
Folders
Bases: ListableApiResource
, FindableApiResource
, CreatableApiResource
, UpdatableApiResource
, DestroyableApiResource
Nylas Folders API
The Nylas folders API allows you to create new folders or manage existing ones.
Source code in nylas/resources/folders.py
16 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 101 102 103 104 105 106 107 108 109 110 111 |
|
create(identifier, request_body)
Create a Folder.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier |
str
|
The identifier of the Grant to act upon. |
required |
request_body |
CreateFolderRequest
|
The values to create the Folder with. |
required |
Returns:
Type | Description |
---|---|
Response[Folder]
|
The created Folder. |
Source code in nylas/resources/folders.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
|
destroy(identifier, folder_id)
Delete a Folder.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier |
str
|
The identifier of the Grant to act upon. |
required |
folder_id |
str
|
The ID of the Folder to delete. |
required |
Returns:
Type | Description |
---|---|
DeleteResponse
|
The deletion response. |
Source code in nylas/resources/folders.py
100 101 102 103 104 105 106 107 108 109 110 111 |
|
find(identifier, folder_id)
Return a Folder.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier |
str
|
The identifier of the Grant to act upon. |
required |
folder_id |
str
|
The ID of the Folder to retrieve. |
required |
Returns:
Type | Description |
---|---|
Response[Folder]
|
The Folder. |
Source code in nylas/resources/folders.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
|
list(identifier)
Return all Folders.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier |
str
|
The identifier of the Grant to act upon. |
required |
Returns:
Type | Description |
---|---|
ListResponse[Folder]
|
The list of Folders. |
Source code in nylas/resources/folders.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
|
update(identifier, folder_id, request_body)
Update a Folder.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier |
str
|
The identifier of the Grant to act upon. |
required |
folder_id |
str
|
The ID of the Folder to update. |
required |
request_body |
UpdateFolderRequest
|
The values to update the Folder with. |
required |
Returns:
Type | Description |
---|---|
Response[Folder]
|
The updated Folder. |
Source code in nylas/resources/folders.py
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
|