action whatsapp_remove_group_participant { label: "Remove-Group-Participant" provider: whatsapp method: DELETE path: "/groups/{GroupId}/participants" encoding: json input: { type: "object" properties: { GroupId: { type: "string" } wa_ids: { type: "array" items: { type: "string" } } } required: ["GroupId", "wa_ids"] additionalProperties: false } output: { type: "object" additionalProperties: true } }