action signl4_get_categories_team_id { label: "Get all categories" description: "Sample Request: \n \n GET /categories/cbb70402-1359-477f-ac92-0171cf2b5ff7" provider: signl4 method: GET path: "/categories/{teamId}" encoding: json input: { type: "object" properties: { teamId: { type: "string" } } required: ["teamId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { augmentations: { type: "array" items: { type: "object" properties: { enabled: { type: "boolean" } name: { type: "string" } type: { type: "integer" format: "int32" enum: [0, 1, 2, 3] } value: { type: "string" } } additionalProperties: false } } color: { type: "string" } id: { type: "string" } imageName: { type: "string" } isDefault: { type: "boolean" } keywordMatching: { type: "integer" format: "int32" enum: [0, 1] } keywords: { type: "array" items: { type: "string" } } lastMatch: { type: "string" format: "date-time" } name: { type: "string" } options: { type: "integer" format: "int32" enum: [0, 1, 2, 4, 8] } order: { type: "integer" format: "int32" } } additionalProperties: false } } }