Sections
To Create, Update, Delete, and Query from Sections table. A section is a subdivision of a project that groups tasks together.
Table Specific Information
Select
The connector will use the Asana API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the connector.
- Id supports the '=' comparison.
- ProjectId supports the '=' comparison.
For example, the following queries are processed server side:
SELECT * FROM Sections WHERE Id = '1127092449876457' SELECT * FROM Sections WHERE ProjectId = '1128092964672848'
Insert
ProjectId is a mandatory column for inserting into Sections table. For example:
INSERT INTO Sections (Name, ProjectId) VALUES ('SectionName', '1128092964672848')
Update
Following is an example of how to update a Sections table:
UPDATE Sections SET Name = 'IT-Pending' WHERE Id = '1127092449876457'
Delete
Following is an example of how to delete from Sections table:
DELETE FROM Sections WHERE Id = '1127092449876457'
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Globally unique ID of the section. | |
Name | String | False |
The name of the section. | |
CreatedAt | Datetime | True |
The time at which the section was created. | |
ResourceType | String | True |
The resource type of this resource. | |
ProjectId | String | False |
Projects.Id |
The section under the project. |