**Version: 202607**

# Get member tier

**GET** `/openapi/2026-07/loyalty/members/:member_id/tier`

Return the current tier and upgrade progress for a member

## Request

**Path Parameters**

- `member_id` string (required)

  Member ID from path

## Responses

**200**

OK

**application/json**

**Schema | Example**

**Schema**

- `code` string

  error code
- `message` string

  error message
- `data` object

  - `member_id` string

    Member ID
  - `current_tier_name` string

    Current tier name
  - `accumulated_amount` string

    Accumulated spend as a decimal string
  - `tier_requirements` object[]

    Tier upgrade requirements in tier order

    *   Array \[

    - `tier_name` string

      Tier name
    - `threshold_amount` string

      Required accumulated spend as a decimal string
    *   \]
  - `next_tier` object

    Next tier. Empty when at top tier or only one tier exists

    - `tier_name` string

      Tier name
    - `threshold_amount` string

      Required accumulated spend as a decimal string

```json
{
  "code": "string",
  "message": "string",
  "data": {
    "member_id": "string",
    "current_tier_name": "string",
    "accumulated_amount": "string",
    "tier_requirements": [
      {
        "tier_name": "string",
        "threshold_amount": "string"
      }
    ],
    "next_tier": {
      "tier_name": "string",
      "threshold_amount": "string"
    }
  }
}
```
