action signl4_get_categories_team_id_metrics { label: "Get metrics for all categories" description: "Sample Request: \n \n GET /categories/cbb70402-1359-477f-ac92-0171cf2b5ff7/metrics" provider: signl4 method: GET path: "/categories/{teamId}/metrics" encoding: json input: { type: "object" properties: { teamId: { type: "string" } } required: ["teamId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { categoryId: { type: "string" } last24Hours: { type: "integer" format: "int64" } lastAlert: { type: "string" format: "date-time" } subscriberCount: { type: "integer" format: "int32" } } additionalProperties: false } } }