Tickets are an API level concept today. Nothing in the app opens them, lists them or files them, so there is no page to go to, no sidebar entry and no inbox of tickets to read. See Platform API for the surface they belong to.
What a ticket holds
The five statuses
A ticket’s status is one of exactly five values, lower-case on the wire:
Any other value is refused as a validation failure rather than stored as an unknown state, so a ticket can never sit in a status nothing understands. See validation_failed for what that refusal looks like.
A ticket outlives the session it points at
A ticket that references a session keeps existing when that session is deleted. The reference is cleared, and the ticket itself, with its title, body and status, stays exactly as it was. Deleting a session is not a way to close a ticket, and losing a session does not lose the record of the work.What is not available yet
Also not documented, because no source establishes it: where a ticket will appear to you when a surface arrives, who will be able to raise one, whether raising one will ever start a session, and whether a ticket will produce a notification.How to track work in Code today
Until tickets have a surface, the things Cortex Code actually shows you are the honest place to track work:- The sessions board. Every session your account has run is listed and grouped by Today, Yesterday, This week and Earlier, with a Status filter offering All, Running, Needs review and Failed. Needs review is the one that means a human is holding something up, either a pull request waiting to be read or a decision waiting to be answered. See Code sessions.
- Notifications. The inbox tells you when a session finished, when it needs a decision, and when an automation ran, newest first. See Code notifications.
- Automations. A saved instruction keeps the text of a recurring job in one place, with a trigger and a repository, although nothing runs unattended yet: Schedules and events do not execute yet. See Automations.
- Pull requests. A finished change lands as a branch and a pull request on the Git tab, which is where review and closure genuinely happen today. See Changes and diffs.
Related
- Code sessions for the board, the filters and what survives a turn.
- Code notifications for what Cortex tells you about.
- Automations for saved instructions and what a run does today.
- Changes and diffs for the branch and the pull request a session produces.
- Platform API for the API surface tickets belong to.