get_single_list
Retrieve detailed information about a specific mailing list, including total count and status, using the list ID in the Sitecore Send MCP Server.
Instructions
Get a single mailing list details: total count, status, etc
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"
}