**版本：202607**

# 查询会员分群列表

**GET** `/openapi/2026-07/loyalty/member-groups`

查询所有会员分群

## 请求

**Query参数**

- `cursor` string

  分页游标
- `limit` int32

  每页条数

## 响应

**200**

OK

**application/json**

**数据结构 | 示例**

**数据结构**

- `code` string

  错误码
- `message` string

  错误信息
- `data` object

  会员分群列表响应

  - `items` object[]

    *   Array \[

    - `member_group_id` string
    - `name` string
    - `is_real_time` boolean
    - `created_at` string
    - `updated_at` string
    *   \]
  - `next_cursor` string
  - `has_more` boolean
  - `limit` int32

```json
{
  "code": "string",
  "message": "string",
  "data": {
    "items": [
      {
        "member_group_id": "string",
        "name": "string",
        "is_real_time": true,
        "created_at": "string",
        "updated_at": "string"
      }
    ],
    "next_cursor": "string",
    "has_more": true,
    "limit": 0
  }
}
```
