Newer Version Available
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
| Input | Details |
|---|---|
| ChangeReason |
|
| LoyaltyProgramMemberId |
|
| ProgramName |
|
| TierGroupName |
|
| TargetTierName |
|
Outputs
| Output | Details |
|---|---|
| LoyaltyProgramMemberId |
|
| ProgramName |
|
| TargetTierName |
|
| TierGroupName |
|
Example
Sample Request
1{
2 "inputs":[{
3 "TierGroupName": "QualifyingGroup",
4 "ProgramName": "baProgram",
5 "TargetTierName": "Gold",
6 "LoyaltyProgramMemberId": "0lcxx00006000001AAA",
7 "ChangeReason": "Reason to change the tier"
8 }]
9}Sample Response
1{
2 "errors":null,
3 "isSuccess":true,
4 "outputValues":{
5 "LoyaltyprogramMemberId":."0lMxx0000A000001EAA",
6 "TierGroupName":"QualifyingGroup",
7 "ProgramName": "baProgram",
8 "TargetTierName":"Gold"
9 }
10}