List dependent tasks
List tasks that depend on this task with pagination.
Args: gid: Task GID to get dependents for. limit: Number of items per page (1-100, default 100). offset: Pagination cursor from previous response.
Returns: List of dependent tasks with pagination metadata.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Query Parameters
Section titled “Query Parameters ”Responses
Section titled “ Responses ”Successful Response
object
Response data payload
Base Asana resource returned by the Asana API.
All Asana resources share a gid and resource_type. Additional fields vary by endpoint and the opt_fields parameter. The extra=“allow” config accepts any additional fields without declaring them, which avoids the circular $ref problem that dict[str, Any] causes in the generated OpenAPI schema.
Attributes: gid: Globally unique identifier for the Asana resource. resource_type: Resource type string (e.g., “task”, “project”). name: Display name of the resource (optional, depends on opt_fields).
Response metadata
object
Request correlation ID
Response timestamp (UTC)
Pagination metadata for list responses.
Per ADR-ASANA-008: Cursor-based pagination with opaque offset.
Attributes: limit: Number of items requested per page. has_more: Whether more items exist after this page. next_offset: Opaque cursor for next page (None if no more pages).
Validation Error