api.jobs.note.update
PUT /job/{jobDisplayId}/note/{id}— ACPortal
Python
api.jobs.note.update(job_display_id: int, note_id: str, *, data: JobNoteUpdateRequest | dict) -> JobNote
CLI
ab jobs note update <job_display_id> <note_id> [--data ...]
Update a note (PUT /job/{jobDisplayId}/note/{id}).
Args:
job_display_id: Job display ID.
note_id: Note identifier.
data: :class:JobNoteUpdateRequest instance or a dict.
Request model: :class:JobNoteUpdateRequest.
Request body — JobNoteUpdateRequest
Field |
Type |
Required |
Description |
|---|---|---|---|
|
|
no |
Updated content |
|
|
no |
Updated flag |
|
|
no |
Mark complete |
Response
Returns 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 |