creator_task.* events
A hand-arranged perk a subscriber bought becomes a task for the creator, and is done.
A creator task is a grant no connector can give: a manual resource (a perk you hand over yourself — a file, a call, a seat in a place no bot manages). When a purchase entitles a subscriber to one, the access ledger records a creator_task grant and opens a task for the creator; when the creator marks it done, the grant is issued and the subscriber's access is announced like any other.
Events
creator_task.opened
A purchase entitles a subscriber to a manual perk; the creator has something to do.
creator_task.completed
The creator marked the task done; the grant is issued.
| Event | Fires when |
|---|---|
creator_task.opened | A purchase entitles a subscriber to a manual resource. One event per resource, with the task the creator now owns. |
creator_task.completed | The creator marks the task done, on the members page, over the API or from an agent. member.resource_added follows. |
See the dedicated pages above for full payload, field reference, and caveats per event.
Example payload — creator_task.opened
{
"id": "evt_01HX...",
"type": "creator_task.opened",
"created_at": "2026-09-12T10:05:30Z",
"api_version": "2026-05-01",
"project_id": "7f3d1c92-8b45-4e6a-9d21-5c8e0a4b6f13",
"data": {
"task_id": "9e4b2c71-3d58-4a6f-b0e2-7c1d5f8a9b34",
"grant_id": "7d1c3e9a-2b64-4f0e-9a58-3c6b1d8e2f47",
"subscription_id": "5b7e2d40-1a86-4c39-97f2-e83d0b16c5a4",
"subscriber_id": "2a91c4e7-6f38-4b52-8e0d-9c1a7b3f5d80",
"resource_id": "b73c5f21-9d80-4a6e-8215-4f70ce13a9d6",
"resource_kind": "manual",
"instructions": "Give Ada Lovelace access to Welcome packet.",
"due_at": null
}
}Related
- Creator Tasks API — list open tasks and complete one.
member.resource_added— raised for the grant once the task is done.
How is this guide?