action maif_create_group { label: "Create a new service group" description: "Create a new service group" provider: maif method: POST path: "/api/groups" encoding: json input: { 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" } } } 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" } } } }