Add Rebate Member List

Add a list of members to a rebate program. The list of rebate members is based on the accounts in the specified account list view.

This object is available in API version 51.0 and later for users with Rebate Management license.

Supported REST HTTP Methods

URI
/services/data/vXX.X/actions/standard/addRebateMemberList
Formats
JSON, XML
HTTP Methods
GET, HEAD, POST
Authentication
Authorization: Bearer token

Inputs

Input Details
listViewId
Type
string
Description
Required. The ID of the account list that’s specified to add rebate members.
notificationPreference
Type
string
Description
A text value that indicates whether notifications should be sent for successful and unsuccessful rebate member additions. Valid values include BlockSuccessEmails, BlockFailureEmails, BlockAllEmails, and AllowAllNotifications.
rebateProgramId
Type
string
Description
Required. The ID of the rebate program to which specified account list view is added.
status
Type
string
Description
Required. The status of the rebate members for the accounts in the specified list view.

Usage

Sample Request
{
   "inputs":[{
   "listViewId":"a07B0000007qbQOIAY",
   "rebateProgramId":"x18Z1236547qbQOBCV",
   "status": "Active"
   "notificationPreference": "BlockAllEmails"
}]
}
Sample Response
{
   "isSuccess":true
}