v93

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

List subscriber notes by external ID

Lists internal notes for a subscriber identified by customer-owned external ID.

get/subscribers/external/notes

Query parameters

externalIdstring required

External ID. Query form supports IDs containing slashes.

Response

Subscriber notes

successboolean

Example response

{
  "notes": [
    {
      "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"
      }
    }
  ]
}