action maif_all_service_groups { label: "Get all service groups" description: "Get all service groups" provider: maif method: GET path: "/api/groups" encoding: json output: { type: "array" items: { type: "object" description: "An Otoroshi service group is just a group of service descriptor. It is useful to be able to define Api Keys for the whole group" required: ["id", "name"] properties: { description: { type: "string" description: "The descriptoin of the group" } id: { type: "string" description: "The unique id of the group. Usually 64 random alpha numerical characters, but can be anything" } name: { type: "string" description: "The name of the group" } } } } }