v93

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-01218121759.7 KB
Subscribers

Create subscriber note by external ID

Creates an internal note for a subscriber identified by customer-owned external ID.

post/subscribers/external/notes

Query parameters

externalIdstring required

External ID. Query form supports IDs containing slashes.

Request body

bodystring required

Internal note body.

Response

Subscriber note created

successboolean

Example response

{
  "note": {
    "id": "note_123",
    "companyId": "comp_abc123",
    "subscriberId": "sub_abc123",
    "authorId": "user_123",
    "body": "Asked about enterprise pricing",
    "author": {
      "id": "user_123",
      "name": "Ana",
      "email": "ana@example.com"
    }
  }
}