action watchful_get_sites_id_tags { label: "Return tags for a specific website" description: "Return tags for a specific website" provider: watchful method: GET path: "/sites/{id}/tags" encoding: json input: { type: "object" properties: { fields: { type: "string" } id: { type: "string" } limit: { type: "string" } limitstart: { type: "string" } name: { type: "string" } order: { type: "string" } type: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }