Change Tier
This action is available in API version 51.0 and later for users with Loyalty Management license.
Supported REST HTTP Methods
- URI
- /services/data/vXX.X/actions/standard/changeTier
- Formats
- JSON, XML
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
Outputs
| Output | Details |
|---|---|
| LoyaltyProgramMemberId |
|
| ProgramName |
|
| TierExpirationDate |
|
| TierGroupName |
|
| TierName |
|
Example
Sample Request
1{
2 "inputs": [
3 {
4 "TierGroupName": "QualifyingGroup",
5 "ProgramName": "baProgram",
6 "TargetTierName": "Gold",
7 "LoyaltyProgramMemberId": "0lcxx00006000001AAA",
8 "ChangeReason": "Reason to change the tier",
9 "CustomTierExpiryDate": "2026-12-31"
10 }
11 ]
12}Sample Response
1{
2 "errors": null,
3 "isSuccess": true,
4 "outputValues": {
5 "LoyaltyProgramMemberId": "0lMxx0000A000001EAA",
6 "TierGroupName": "QualifyingGroup",
7 "ProgramName": "baProgram",
8 "TierName": "Gold",
9 "TierExpirationDate": "2026-12-31"
10 }
11}