action cloudflare_tags_get { label: "Get tags for an account-level resource" description: "Retrieves tags for a specific account-level resource." provider: cloudflare method: GET path: "/accounts/{account_id}/tags" encoding: json input: { type: "object" properties: { account_id: { type: "object" } resource_id: { type: "string" description: "Identifies the unique resource." } resource_type: { type: "string" description: "Identifies the type of account-level resource." enum: ["access_application", "access_group", "account", "account_ruleset", "ai_gateway", "alerting_policy", "alerting_webhook", "cloudflared_tunnel", "d1_database", "durable_object_namespace", "gateway_list", "gateway_rule", "image", "infrastructure_target", "kv_namespace", "load_balancer_monitor", "load_balancer_pool", "pages_project", "queue", "r2_bucket", "resource_share", "stream_live_input", "stream_video", "vectorize_index", "worker", "worker_version"] } worker_id: { type: "string" description: "Worker ID is required only for worker_version resources" } } required: ["account_id", "resource_id", "resource_type"] additionalProperties: false } output: { type: "object" } }