action maif_delete_api_key_from_group { label: "Delete an api key" description: "Delete an api key for a specified service group" provider: maif method: DELETE path: "/api/groups/{groupId}/apikeys/{clientId}" encoding: json input: { type: "object" properties: { clientId: { type: "string" } groupId: { type: "string" } } required: ["clientId", "groupId"] additionalProperties: false } output: { type: "object" required: ["deleted"] properties: { deleted: { type: "boolean" } } } }