Skip to main content
GET
/
orders
/
{id}
/
notes
List order notes
curl --request GET \
  --url https://api.sellfern.com/orders/{id}/notes \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": 42,
      "order_id": 1234567890,
      "author_user_id": 123,
      "author_token_id": 123,
      "author_name": "Operations Bot",
      "text": "Supplier confirmed production start.",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "request_id": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.sellfern.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Sellfern public API key scoped to the authenticated organization. Do not use user JWTs for public integrations.

Path Parameters

id
integer
required

Order ID.

Required range: x >= 1

Response

Order notes returned successfully.

success
boolean
required
Example:

true

data
object[]
required
meta
object