InboxedUp - API
  1. Subscriptions
InboxedUp - API
  • Account
    • Get account overview
      GET
  • Subscriptions
    • List active subscriptions
      GET
    • Update subscription notes
      PATCH
  • Domains
    • Submit domains
      POST
    • List domains
      GET
    • Get domain
      GET
    • Remove domain
      DELETE
    • Verify domain NS propagation
      POST
    • Get batch status
      GET
  • Mailboxes
    • Request mailboxes
      POST
    • List mailbox requests
      GET
    • Get mailbox request
      GET
  • Schemas
    • Error
    • MailboxEntry
  1. Subscriptions

Update subscription notes

PATCH
/subscriptions/{id}/notes
Add or update notes for a specific subscription. Useful for tracking which client, domain, or workspace a subscription is associated with.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Notes updated
Body

🟠401
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/subscriptions//notes' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "notes": "Client: Acme Corp | Domain: acmecorp.com | Workspace: Sales Team"
}'
Response Response Example
{
    "success": true,
    "data": {
        "id": "sub_internal_id",
        "notes": "Client: Acme Corp | Domain: acmecorp.com"
    }
}
Modified at 2026-03-12 08:23:30
Previous
List active subscriptions
Next
Submit domains
Built with