create_draft_quote_tweet
Create a draft quote tweet by adding your comment to an existing tweet, allowing you to share thoughts while referencing source content before publishing.
Instructions
Create a draft quote tweet with comment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | Yes | Your comment on the quoted tweet | |
tweet_id | Yes | The ID of the tweet to quote |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "Your comment on the quoted tweet",
"type": "string"
},
"tweet_id": {
"description": "The ID of the tweet to quote",
"type": "string"
}
},
"required": [
"tweet_id",
"comment"
],
"type": "object"
}