Skip to main content
Version: v1.0.0(int)

E153: Add timeline note

POST /api/sales-orders/:id/timeline-notes

Appends a note to an SO's timeline, capturing the SO's current status alongside it. Triggered from Sales Order Detail timeline section.

Authentication

Standard tenant route. Requires Authorization: Bearer <firebase-id-token> and X-Org-Id: <org-id>. Access: Member.

Request

{ "body": "Customer requested split shipment" }

Response — 201 Created

{ "id": "uuid", "soId": "uuid", "authorId": "uuid", "body": "Customer requested split shipment", "createdAt": "..." }

Errors

HTTPcodeCondition
404not_foundNo such SO.
422validation_failedBody empty.

Workflow

Calls W153 Add timeline note.