get_subscribers
Retrieve all subscribers associated with a specific mailing list in Sitecore Send by providing the list ID.
Instructions
Get subscribers of a mailing list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
listId | Yes | Id of the mailing list |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"listId": {
"description": "Id of the mailing list",
"format": "uuid",
"type": "string"
}
},
"required": [
"listId"
],
"type": "object"
}