create_draft_reply
Compose a draft response to an existing X/Twitter post for review and publishing later. Specify the tweet ID to reply to and your reply content.
Instructions
Create a draft reply to an existing tweet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content of the reply tweet | |
reply_to_tweet_id | Yes | The ID of the tweet to reply to |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The content of the reply tweet",
"type": "string"
},
"reply_to_tweet_id": {
"description": "The ID of the tweet to reply to",
"type": "string"
}
},
"required": [
"content",
"reply_to_tweet_id"
],
"type": "object"
}