Skip to main content
PUT
/
v2
/
loyalties
/
tier-structures
/
{id}
/
tiers
/
{tierId}
Update Tier
curl --request PUT \
  --url https://api.voucherify.io/v2/loyalties/tier-structures/{id}/tiers/{tierId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-App-Id: <api-key>' \
  --header 'X-App-Token: <api-key>' \
  --data '
{
  "name": "<string>",
  "qualification_rules": {
    "type": "POINTS",
    "min_value": 1,
    "max_value": 1,
    "segment": {
      "id": "<string>"
    }
  },
  "downgrade": {
    "type": "INHERIT"
  },
  "metadata": {}
}
'
{
  "id": "<string>",
  "tier_structure_id": "<string>",
  "name": "<string>",
  "downgrade": {
    "type": "INHERIT"
  },
  "metadata": {},
  "created_at": "2023-11-07T05:31:56Z",
  "object": "tier",
  "qualification_rules": {
    "type": "POINTS",
    "min_value": 1,
    "max_value": 1,
    "segment": {
      "id": "<string>"
    }
  },
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.voucherify.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

X-App-Id
string
header
required
X-App-Token
string
header
required

Path Parameters

id
string
required

Unique tier structure identifier.

tierId
string
required

Unique tier identifier.

Body

application/json

All fields optional. Omitted fields retain their current values.

name
string

Display name.

Required string length: 1 - 200
qualification_rules
object

Qualification rules.

downgrade
object

Downgrade override.

metadata
object

Custom key-value metadata.

Response

Updated tier

A tier resource as returned by the API.

id
string
required

Unique tier identifier.

tier_structure_id
string
required

ID of the parent tier structure.

name
string
required

Display name.

Maximum string length: 200
downgrade
object
required
metadata
object
required

Custom key-value metadata.

created_at
string<date-time>
required

ISO 8601 creation timestamp.

object
enum<string>
required

Object type discriminator.

Available options:
tier
qualification_rules
object

Rules determining how members qualify for this tier.

updated_at
string<date-time> | null

ISO 8601 last-update timestamp.

Last modified on May 11, 2026