order.note.add

Append a merchant note to an order's timeline.

Payload

fieldtyperequirednotes
orderIdstring (/^ord_[a-zA-Z0-9]{1,32}$/)yes
noteIdstring (/^ont_[a-zA-Z0-9]{1,32}$/)yes
bodystring (≤2000 chars)yes

JSON Schema

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "orderId": {
      "type": "string",
      "pattern": "^ord_[a-zA-Z0-9]{1,32}$"
    },
    "noteId": {
      "type": "string",
      "pattern": "^ont_[a-zA-Z0-9]{1,32}$"
    },
    "body": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2000
    }
  },
  "required": [
    "orderId",
    "noteId",
    "body"
  ],
  "additionalProperties": false
}
Generated from the live platform registries at build time — reference pages cannot go stale. Markdown variant: /reference/commands/order.note.add.md