Newer Version Available

This content describes an older version of this product. View Latest

Change Tier Actions

Change the tier for a specified loyalty program member.

This object 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
GET, HEAD, POST
Authentication
Authorization: Bearer token

Inputs

Input Details
TierGroupName
Type
string
Description
The name of the tier group.
ProgramName
Type
string
Description
The loyalty program name associated with the tier.
TargetTierName
Type
string
Description
The new tier to be associated with the loyalty program member
LoyaltyProgramMemberId
Type
ID
Description
ID of the loyalty program member.
ChangeReason
Type
string
Description
The reason for change in member tier.

Outputs

Output Details
LoyaltyProgramMemberId
Type
string
Description
ID of the loyalty program member.
TierGroupName
Type
string
Description
The name of the tier group.
ProgramName
Type
string
Description
The name of the loyalty program.
TargetTierName
Type
string
Description
The new tier associated with the loyalty program member.

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      }
10   ]
11}

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}