action maif_api_key_group { label: "Get the group of an api key" description: "Get the group of an api key" provider: maif method: GET path: "/api/services/{serviceId}/apikeys/{clientId}/group" encoding: json input: { type: "object" properties: { clientId: { type: "string" } serviceId: { type: "string" } } required: ["clientId", "serviceId"] additionalProperties: false } 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" } } } }