add_subscriber
Add subscribers to a specific mailing list by providing their email, name, and optional tags. Ensure accurate targeting with unique list IDs using Sitecore Send.
Instructions
Add subscriber to a mailing list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | Email of the subscriber | ||
listId | Yes | Id of the mailing list | |
name | No | Name of the subscriber | |
tags | No | Tags of the subscriber |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"email": {
"description": "Email of the subscriber",
"format": "email",
"type": "string"
},
"listId": {
"description": "Id of the mailing list",
"format": "uuid",
"type": "string"
},
"name": {
"description": "Name of the subscriber",
"type": "string"
},
"tags": {
"description": "Tags of the subscriber",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"listId",
"email"
],
"type": "object"
}