action drchrono_user_groups_list { label: "user_groups_list" description: "Retrieve or search user groups" provider: drchrono method: GET path: "/api/user_groups" encoding: json input: { type: "object" properties: { cursor: { type: "string" description: "The pagination cursor value." } doctor: { type: "integer" } page_size: { type: "integer" description: "Number of results to return per page." } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { type: "object" properties: { archived: { type: "boolean" description: "Group is archived or not" } created_at: { type: "string" } id: { type: "integer" } members: { type: "array" description: "Users in this user group." items: { type: "string" description: "ID of `/api/users`" } } name: { type: "string" } practice_group: { type: "string" description: "Practice group this user group belongs to" } updated_at: { type: "string" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }