action adafruit_all_blocks { label: "All blocks for current user" description: "The Blocks endpoint returns information about the user's blocks.\n" provider: adafruit method: GET path: "/{username}/dashboards/{dashboard_id}/blocks" encoding: json input: { type: "object" properties: { dashboard_id: { type: "string" } username: { type: "string" } } required: ["dashboard_id", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }