v93

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

Create subscriber note

Creates an internal note for a subscriber identified by email address.

post/subscribers/{email}/notes

Path parameters

emailstring required

URL-encoded email address

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"
    }
  }
}