coda_resolve_link
Extract metadata from a Coda object URL to enable AI assistants to interact with Coda documents effectively, supporting operations like reading and updating content.
Instructions
Resolve metadata given a browser link to a Coda object
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | The URL to resolve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "The URL to resolve",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}