get_analytics
Retrieve detailed analytics for a specific email draft in Buttondown by providing the draft ID. Supports email performance tracking and data-driven decisions.
Instructions
Retrieve analytics data for a specific email draft from Buttondown
Input Schema
Name | Required | Description | Default |
---|---|---|---|
draftId | Yes | The ID of the email draft to get analytics for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"draftId": {
"description": "The ID of the email draft to get analytics for",
"type": "string"
}
},
"required": [
"draftId"
],
"type": "object"
}