Tasks - Notes API
Bu içerik henüz dilinizde mevcut değil.
List notes of a task
Заголовок раздела «List notes of a task»List all notes of the task with the given :id .
GET /tasks/:id/notesResponse
Заголовок раздела «Response»Status: 200 OK[ { "person": { "name": "Barney Turban", "id": 58 }, "created_at": "2016-03-12T11:33:00-06:00", "text": "Use the information gathered in the previous risk & impact analysis tasks to finalize the change plan. Do this is such a way that the implementation plan minimizes both the risk of failure and the impact on the customer(s). Also ensure that the necessary approvals are collected before the implementation of the change can start.\n\nNote that approval from the owner of the service that is related to the workflow is required for each non-standard change, regardless of whether customer representative approval is required or not. Approval from the customer representative(s) of the service that is related to the workflow is only required if the change implementation is going to cause:\n- the service to become unavailable or degraded during service hours, or\n- the functionality of the service to become different.", "id": 464, "medium": "default", "task": { "id": 89, "subject": "Finalize the change plan" }, "attachments": [] }, { "person": { "name": "Luis Thomas", "id": 60 }, "created_at": "2016-03-12T11:33:00-06:00", "text": "Because the servers are monitored by NNM and because they will need to be rebooted after the upgrade, events wil be generated, and we should warn Operations.", "id": 463, "medium": "default", "task": { "id": 88, "subject": "Will events be generated when the change is implemented?" }, "attachments": [] }, "..."]The response contains these fields by default.
Filtering
Заголовок раздела «Filtering»Filtering is available for the following fields :
created_at
medium
person
Create a note
Заголовок раздела «Create a note»POST /tasks/:id/notesWhen creating a new note the
text
field must be supplied.
Response
Заголовок раздела «Response»Status: 201 Created{ "id": 12345}The response contains the
id
of the created note.
text
Required text (max 64KB) — The text of the note.
attachments
Optional attachments Attachments that should be added to the note.
suppress_note_added_notifications
Optional
boolean
, default:
false
— Set to the value
true
to suppress the ‘Note Added’ notifications from being created. Other notifications, such as ‘Watchlist Item Updated’ and ‘Person Mentioned’, will still be created if applicable.
Examples
Заголовок раздела «Examples»Create a note with rich text formatting
Заголовок раздела «Create a note with rich text formatting»The text field supports rich text formatting, including bold, italic, lists, code blocks, and expandable sections.
POST /tasks/12345/notesContent-Type: application/jsonAuthorization: Bearer <token>
{ "text": "Task completed with the following actions:\n\n* Reviewed **implementation plan**\n* Updated __configuration settings__\n* Tested with `test-runner --verbose`"}Create a note with an expandable section (spoiler)
Заголовок раздела «Create a note with an expandable section (spoiler)»POST /tasks/12345/notesContent-Type: application/jsonAuthorization: Bearer <token>
{ "text": "<details>\n<summary>Implementation Details</summary>\n\nThe following changes were made:\n\n* **Database**: Updated schema version to 3.2.1\n* **Code**: Merged PR #1234 to main branch\n\n</details>"}