get_subscriber_by_email
Retrieve subscriber details from a Sitecore Send mailing list using a specific email address and list ID for targeted communications.
Instructions
Get subscriber by email
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | Email of the subscriber | ||
listId | Yes | Id of the mailing list |
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"
}
},
"required": [
"listId",
"email"
],
"type": "object"
}