Retrieve a list of all subtasks of a given task. Note: The tasks:read scope is required to run this action.
External DocumentationTo learn more, visit the Asana documentation.

Basic Parameters

ParameterDescription
Parent TaskThe GID of the parent task for which subtasks should be retrieved.
Return All PagesAutomatically fetch all resources, page by page.

Advanced Parameters

ParameterDescription
Include FieldsA comma-separated list of properties to include in the response.
LimitThe maximum number of items to retrieve per execution. The value must be between 1 and 100.
OffsetAn offset to the next page returned by the API. A pagination request will return an offset token, which can be used as an offset parameter to the next request. If an offset is not passed in, the API will return the first page of results.

Note: You can only pass in an offset that was returned to you via a previously paginated request.

Example Output

{
	"data": [
		{
			"gid": "12345",
			"name": "Bug Task",
			"resource_subtype": "default_task",
			"resource_type": "task"
		}
	]
}

Workflow Library Example

List Subtasks with Asana and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop