**Version: 202601**

# List member groups

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

Return all member segments

## Request

**Query Parameters**

- `cursor` string

  Pagination cursor
- `limit` int32

  Page size

## Responses

**200**

OK

**application/json**

**Schema | Example**

**Schema**

- `code` string

  error code
- `message` string

  error message
- `data` object

  List member groups response

  - `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
  }
}
```
