fetch_full_docs
Retrieve full documentation pages from shopify.dev by specifying paths and providing a conversation ID from learn_shopify_api.
Instructions
Use this tool to retrieve a list of full documentation pages from shopify.dev.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conversationId | Yes | 🔗 REQUIRED: conversationId from learn_shopify_api tool. Call learn_shopify_api first if you don't have this. | |
paths | Yes | The paths to the full documentation pages to read, i.e. ["/docs/api/app-home", "/docs/api/functions"]. Paths should be relative to the root of the developer documentation site. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"conversationId": {
"description": "🔗 REQUIRED: conversationId from learn_shopify_api tool. Call learn_shopify_api first if you don't have this.",
"type": "string"
},
"paths": {
"description": "The paths to the full documentation pages to read, i.e. [\"/docs/api/app-home\", \"/docs/api/functions\"]. Paths should be relative to the root of the developer documentation site.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"conversationId",
"paths"
],
"type": "object"
}