api.jobs.note.list
GET /job/{jobDisplayId}/note— ACPortal
Python
api.jobs.note.list(job_display_id: int, *, category: str | None = None, task_code: str | None = None) -> list[JobNote]
CLI
ab jobs note list <job_display_id> [--category ...] [--task-code ...]
List notes attached to job_display_id (GET /job/{jobDisplayId}/note).
Args: job_display_id: Job display ID. category: Note category filter. task_code: Task code filter.
Query parameters — JobNoteListParams
Field |
Type |
Required |
Description |
|---|---|---|---|
|
|
no |
Note category filter |
|
|
no |
Task code filter |
Response
Returns a list of List[JobNote].
Field |
Type |
Required |
Description |
|---|---|---|---|
|
|
no |
Creation timestamp |
|
|
no |
Last modification timestamp |
|
|
no |
Creator identifier |
|
|
no |
Last modifier identifier |
|
|
no |
Note ID |
|
|
no |
Note content |
|
|
no |
Flagged as important |
|
|
no |
Completion status |
|
|
no |
Author name |
|
|
no |
Last modified (API typo preserved) |
|
|
no |
Associated timeline task |