action maif_initiate_service_group { label: "Get a template of an Otoroshi service group" description: "Get a template of an Otoroshi service group. The generated entity is not persisted" provider: maif method: GET path: "/new/group" encoding: json output: { 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" } } } }