list_creator_tasks
List the hand-arranged perks a creator still has to hand over — one task per subscriber and manual resource — or the ones already done.
Purpose
A manual resource is a perk no connector can give, so a purchase that includes one opens a task for the creator and the access waits. This lists those tasks for one project: by default the open ones (not yet done, purchase still standing), oldest first, so the longest-waiting member is at the top. Read it to answer "who is still waiting for something I hand over myself?".
Required ability
project-subscription:view
Input schema
{
"type": "object",
"required": ["project_id"],
"properties": {
"project_id": { "type": "string", "description": "UUID of the project whose tasks to list." },
"status": { "type": "string", "enum": ["open", "completed", "all"], "description": "Which tasks: open (default), completed, or all." },
"limit": { "type": "integer", "minimum": 1, "maximum": 100, "description": "Tasks per page (default 25)." },
"page": { "type": "integer", "minimum": 1, "description": "1-indexed page number." }
}
}Output shape
{
"data": [
{
"id": "9e4b2c71-3d58-4a6f-b0e2-7c1d5f8a9b34",
"grant_id": "7d1c3e9a-2b64-4f0e-9a58-3c6b1d8e2f47",
"project_id": "7f3d1c92-8b45-4e6a-9d21-5c8e0a4b6f13",
"subscription_id": "5b7e2d40-1a86-4c39-97f2-e83d0b16c5a4",
"subscriber_id": "2a91c4e7-6f38-4b52-8e0d-9c1a7b3f5d80",
"resource_id": "b73c5f21-9d80-4a6e-8215-4f70ce13a9d6",
"resource_title": "Welcome packet",
"instructions": "Give Ada Lovelace access to Welcome packet.",
"due_at": null,
"completed_at": null,
"completed_by_user_id": null,
"created_at": "2026-09-12T10:05:30Z"
}
],
"meta": { "page": 1, "limit": 25, "total": 1, "has_more": false }
}Example prompts
"What do I still have to hand over to members of project
7f3d1c92-…?"
"Who has been waiting longest for their welcome packet?"
Failure modes
RESOURCE_NOT_FOUND—project_idis not a project the token can see.AUTHENTICATION_REQUIRED— no authenticated user on the request.TOKEN_MISSING_ABILITY— token lacksproject-subscription:view.
Related
complete_creator_task— mark one done.- Creator Tasks API
How is this guide?