action zoomconnect_post_api_rest_v1_groups_group_id_add_contact_contact_id { label: "addContact" description: "Add a contact to a group" provider: zoomconnect method: POST path: "/api/rest/v1/groups/{groupId}/addContact/{contactId}" encoding: json input: { type: "object" properties: { contactId: { type: "string" } groupId: { type: "string" } } required: ["contactId", "groupId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }