action zoomconnect_get_api_rest_v1_contacts_contact_id_add_from_group_group_id { label: "removeFromGroup" description: "Remove a contact from a group" provider: zoomconnect method: GET path: "/api/rest/v1/contacts/{contactId}/addFromGroup/{groupId}" encoding: json input: { type: "object" properties: { contactId: { type: "string" } groupId: { type: "string" } } required: ["contactId", "groupId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }