create_note_with_link
Create a Substack note with attached URL to share links and content in your publication. Add text content and a web link to publish informative notes.
Instructions
Create a new Substack note with a link attachment
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The text content of the note | |
| link | Yes | URL to attach to the note |
Input Schema (JSON Schema)
{
"properties": {
"link": {
"description": "URL to attach to the note",
"type": "string"
},
"text": {
"description": "The text content of the note",
"type": "string"
}
},
"required": [
"text",
"link"
],
"type": "object"
}