v93

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

Remove tag from subscriber

Removes a tag from a subscriber. Creates the subscriber if they don't exist (without the tag).

post/subscribers/tags/remove

Request body

emailstring email

Required when creating a new subscriber. Optional when externalId identifies an existing subscriber.

externalIdstring

Customer-owned app/customer/user ID

tagstring required
firstNamestring

First name (used if creating new subscriber)

lastNamestring

Last name (used if creating new subscriber)

Example request

{
  "email": "user@example.com",
  "externalId": "user_123",
  "tag": "premium"
}

Response

Tag removed successfully

successboolean

Example response

{
  "success": true
}