Read background Codex job events
codex_job_logsFetch and page through background job events, using a cursor to get only new logs and filtering by event types to reduce noise.
Instructions
Page through the JSONL events of a background run. Pass the returned next_cursor back as "since" to read only what is new. Filter with "types" to cut the noise.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum events per page. Defaults to 200. | |
| since | No | Cursor from a previous call. Omit to read from the start. | |
| types | No | Keep only these event types, e.g. ["item.completed", "turn.completed"]. | |
| job_id | Yes | Job id returned by a tool call that went to the background. |