action docusign_groups_get_group_users { label: "Gets a list of users in a group." description: "Retrieves a list of users in a group." provider: docusign method: GET path: "/v2.1/accounts/{accountId}/groups/{groupId}/users" encoding: json input: { type: "object" properties: { accountId: { type: "string" } count: { type: "string" } groupId: { type: "string" } start_position: { type: "string" } } required: ["accountId", "groupId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }