POST api/rewards
Creates new rewards members and referrals of a referral program.
Request Information
URI Parameters
Query String:
None.
Body Parameters
A list of required structures containing the details about the reward to create.
Type: Collection of NewRewardInfo
| Name | Description | Type | Additional information |
|---|---|---|---|
| memberQuery |
A structure containing details to identify a member to reward. |
MemberQuery |
None. |
| referralQuery |
A structure containing details to identify a referral to reward. |
ReferralQuery |
None. |
| newReward |
Details about a reward to create. Required. |
NewReward |
Required |
Request Formats
application/json, text/json
[
{
"memberQuery": {
"primaryInfo": {
"memberId": "sample string 1",
"referralCode": "sample string 2"
},
"secondaryInfo": {
"externalIdentifier": "sample string 1",
"email": "sample string 2"
},
"tertiaryInfo": {
"programId": "sample string 1",
"programName": "sample string 2",
"programTitle": "sample string 3"
}
},
"referralQuery": {
"primaryInfo": {
"referralId": "sample string 1"
},
"secondaryInfo": {
"externalIdentifier": "sample string 1",
"email": "sample string 2",
"phoneNumber": "sample string 3"
},
"tertiaryInfo": {
"ProgramId": "sample string 1",
"ProgramName": "sample string 2",
"ProgramTitle": "sample string 3"
},
"fuzzyInfo": {
"Identifier": "sample string 1"
}
},
"newReward": {
"amount": 1.0,
"payoutId": "sample string 2",
"eligibilityDate": "2025-11-16T16:28:09.2997164Z",
"description": "sample string 3"
}
},
{
"memberQuery": {
"primaryInfo": {
"memberId": "sample string 1",
"referralCode": "sample string 2"
},
"secondaryInfo": {
"externalIdentifier": "sample string 1",
"email": "sample string 2"
},
"tertiaryInfo": {
"programId": "sample string 1",
"programName": "sample string 2",
"programTitle": "sample string 3"
}
},
"referralQuery": {
"primaryInfo": {
"referralId": "sample string 1"
},
"secondaryInfo": {
"externalIdentifier": "sample string 1",
"email": "sample string 2",
"phoneNumber": "sample string 3"
},
"tertiaryInfo": {
"ProgramId": "sample string 1",
"ProgramName": "sample string 2",
"ProgramTitle": "sample string 3"
},
"fuzzyInfo": {
"Identifier": "sample string 1"
}
},
"newReward": {
"amount": 1.0,
"payoutId": "sample string 2",
"eligibilityDate": "2025-11-16T16:28:09.2997164Z",
"description": "sample string 3"
}
}
]
application/xml, text/xml
<ArrayOfnewRewardInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<newRewardInfo>
<memberQuery>
<primaryInfo>
<memberId>sample string 1</memberId>
<referralCode>sample string 2</referralCode>
</primaryInfo>
<secondaryInfo>
<email>sample string 2</email>
<externalIdentifier>sample string 1</externalIdentifier>
</secondaryInfo>
<tertiaryInfo>
<programId>sample string 1</programId>
<programName>sample string 2</programName>
<programTitle>sample string 3</programTitle>
</tertiaryInfo>
</memberQuery>
<referralQuery>
<fuzzyInfo xmlns:d4p1="http://schemas.datacontract.org/2004/07/ReferralRock.Api.Models">
<d4p1:Identifier>sample string 1</d4p1:Identifier>
</fuzzyInfo>
<primaryInfo>
<referralId>sample string 1</referralId>
</primaryInfo>
<secondaryInfo>
<email>sample string 2</email>
<externalIdentifier>sample string 1</externalIdentifier>
<phoneNumber>sample string 3</phoneNumber>
</secondaryInfo>
<tertiaryInfo xmlns:d4p1="http://schemas.datacontract.org/2004/07/ReferralRock.Api.Models">
<d4p1:ProgramId>sample string 1</d4p1:ProgramId>
<d4p1:ProgramName>sample string 2</d4p1:ProgramName>
<d4p1:ProgramTitle>sample string 3</d4p1:ProgramTitle>
</tertiaryInfo>
</referralQuery>
<newReward>
<payoutId>sample string 2</payoutId>
<eligibilityDate>2025-11-16T16:28:09.2997164+00:00</eligibilityDate>
<description>sample string 3</description>
<amount>1</amount>
</newReward>
</newRewardInfo>
<newRewardInfo>
<memberQuery>
<primaryInfo>
<memberId>sample string 1</memberId>
<referralCode>sample string 2</referralCode>
</primaryInfo>
<secondaryInfo>
<email>sample string 2</email>
<externalIdentifier>sample string 1</externalIdentifier>
</secondaryInfo>
<tertiaryInfo>
<programId>sample string 1</programId>
<programName>sample string 2</programName>
<programTitle>sample string 3</programTitle>
</tertiaryInfo>
</memberQuery>
<referralQuery>
<fuzzyInfo xmlns:d4p1="http://schemas.datacontract.org/2004/07/ReferralRock.Api.Models">
<d4p1:Identifier>sample string 1</d4p1:Identifier>
</fuzzyInfo>
<primaryInfo>
<referralId>sample string 1</referralId>
</primaryInfo>
<secondaryInfo>
<email>sample string 2</email>
<externalIdentifier>sample string 1</externalIdentifier>
<phoneNumber>sample string 3</phoneNumber>
</secondaryInfo>
<tertiaryInfo xmlns:d4p1="http://schemas.datacontract.org/2004/07/ReferralRock.Api.Models">
<d4p1:ProgramId>sample string 1</d4p1:ProgramId>
<d4p1:ProgramName>sample string 2</d4p1:ProgramName>
<d4p1:ProgramTitle>sample string 3</d4p1:ProgramTitle>
</tertiaryInfo>
</referralQuery>
<newReward>
<payoutId>sample string 2</payoutId>
<eligibilityDate>2025-11-16T16:28:09.2997164+00:00</eligibilityDate>
<description>sample string 3</description>
<amount>1</amount>
</newReward>
</newRewardInfo>
</ArrayOfnewRewardInfo>
Response Information
Resource Description
[HTTP Status 200 - OK]
Type: Collection of NewRewardResult
| Name | Description | Type | Additional information |
|---|---|---|---|
| memberQuery |
Echos the member query sent in the request. |
MemberQuery |
None. |
| referralQuery |
Echos the referral query sent in the request. |
ReferralQuery |
None. |
| reward |
Details about a reward to created. |
Reward |
None. |
| resultInfo |
Details about the results of the request. |
ResultInfo |
None. |
Response Formats
application/json, text/json
[
{
"memberQuery": {
"primaryInfo": {
"memberId": "sample string 1",
"referralCode": "sample string 2"
},
"secondaryInfo": {
"externalIdentifier": "sample string 1",
"email": "sample string 2"
},
"tertiaryInfo": {
"programId": "sample string 1",
"programName": "sample string 2",
"programTitle": "sample string 3"
}
},
"referralQuery": {
"primaryInfo": {
"referralId": "sample string 1"
},
"secondaryInfo": {
"externalIdentifier": "sample string 1",
"email": "sample string 2",
"phoneNumber": "sample string 3"
},
"tertiaryInfo": {
"ProgramId": "sample string 1",
"ProgramName": "sample string 2",
"ProgramTitle": "sample string 3"
},
"fuzzyInfo": {
"Identifier": "sample string 1"
}
},
"reward": {
"id": "5f2f2f41-c8ee-44c8-ac81-dc6d40395291",
"payoutId": "88c969db-e464-45d8-8dff-5012340a7b5f",
"payoutDescription": "sample string 3",
"programId": "ba85c68a-ed8c-478a-9ae8-1c8b3a8ca1bd",
"programName": "sample string 5",
"memberId": "b2b42b4e-3ef7-4f50-9de4-72adc8ac9777",
"referralId": "31e3baba-dd9c-4ded-876f-23247c07ee77",
"type": "sample string 6",
"recipientId": "82c24cc8-5862-4084-8fb1-df923f2fbadb",
"recipientName": "sample string 7",
"recipientEmailAddress": "sample string 8",
"recipientExternalIdentifier": "sample string 9",
"externalIdentifier": "sample string 10",
"status": "sample string 11",
"amount": 12.0,
"createDate": "2025-11-16T16:28:09.2997164Z",
"issueDate": "2025-11-16T16:28:09.2997164Z",
"eligibilityDate": "2025-11-16T16:28:09.2997164Z",
"description": "sample string 15",
"transactionID": "d26876bb-7229-4444-ae6d-40bb77dc029e",
"updateDate": "2025-11-16T16:28:09.2997164Z",
"referralDisplayName": "sample string 17",
"currencyCode": "sample string 18",
"source": "sample string 19",
"programRewardRuleId": "92248d80-6abb-418f-bb81-1c1dbd55357f",
"paymentType": "sample string 20",
"paymentCode": "sample string 21",
"completeNote": "sample string 22",
"reason": "sample string 23",
"reasonOther": "sample string 24"
},
"resultInfo": {
"Status": "sample string 1",
"Message": "sample string 2"
}
},
{
"memberQuery": {
"primaryInfo": {
"memberId": "sample string 1",
"referralCode": "sample string 2"
},
"secondaryInfo": {
"externalIdentifier": "sample string 1",
"email": "sample string 2"
},
"tertiaryInfo": {
"programId": "sample string 1",
"programName": "sample string 2",
"programTitle": "sample string 3"
}
},
"referralQuery": {
"primaryInfo": {
"referralId": "sample string 1"
},
"secondaryInfo": {
"externalIdentifier": "sample string 1",
"email": "sample string 2",
"phoneNumber": "sample string 3"
},
"tertiaryInfo": {
"ProgramId": "sample string 1",
"ProgramName": "sample string 2",
"ProgramTitle": "sample string 3"
},
"fuzzyInfo": {
"Identifier": "sample string 1"
}
},
"reward": {
"id": "5f2f2f41-c8ee-44c8-ac81-dc6d40395291",
"payoutId": "88c969db-e464-45d8-8dff-5012340a7b5f",
"payoutDescription": "sample string 3",
"programId": "ba85c68a-ed8c-478a-9ae8-1c8b3a8ca1bd",
"programName": "sample string 5",
"memberId": "b2b42b4e-3ef7-4f50-9de4-72adc8ac9777",
"referralId": "31e3baba-dd9c-4ded-876f-23247c07ee77",
"type": "sample string 6",
"recipientId": "82c24cc8-5862-4084-8fb1-df923f2fbadb",
"recipientName": "sample string 7",
"recipientEmailAddress": "sample string 8",
"recipientExternalIdentifier": "sample string 9",
"externalIdentifier": "sample string 10",
"status": "sample string 11",
"amount": 12.0,
"createDate": "2025-11-16T16:28:09.2997164Z",
"issueDate": "2025-11-16T16:28:09.2997164Z",
"eligibilityDate": "2025-11-16T16:28:09.2997164Z",
"description": "sample string 15",
"transactionID": "d26876bb-7229-4444-ae6d-40bb77dc029e",
"updateDate": "2025-11-16T16:28:09.2997164Z",
"referralDisplayName": "sample string 17",
"currencyCode": "sample string 18",
"source": "sample string 19",
"programRewardRuleId": "92248d80-6abb-418f-bb81-1c1dbd55357f",
"paymentType": "sample string 20",
"paymentCode": "sample string 21",
"completeNote": "sample string 22",
"reason": "sample string 23",
"reasonOther": "sample string 24"
},
"resultInfo": {
"Status": "sample string 1",
"Message": "sample string 2"
}
}
]
application/xml, text/xml
<ArrayOfnewRewardResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<newRewardResult>
<memberQuery>
<primaryInfo>
<memberId>sample string 1</memberId>
<referralCode>sample string 2</referralCode>
</primaryInfo>
<secondaryInfo>
<email>sample string 2</email>
<externalIdentifier>sample string 1</externalIdentifier>
</secondaryInfo>
<tertiaryInfo>
<programId>sample string 1</programId>
<programName>sample string 2</programName>
<programTitle>sample string 3</programTitle>
</tertiaryInfo>
</memberQuery>
<referralQuery>
<fuzzyInfo xmlns:d4p1="http://schemas.datacontract.org/2004/07/ReferralRock.Api.Models">
<d4p1:Identifier>sample string 1</d4p1:Identifier>
</fuzzyInfo>
<primaryInfo>
<referralId>sample string 1</referralId>
</primaryInfo>
<secondaryInfo>
<email>sample string 2</email>
<externalIdentifier>sample string 1</externalIdentifier>
<phoneNumber>sample string 3</phoneNumber>
</secondaryInfo>
<tertiaryInfo xmlns:d4p1="http://schemas.datacontract.org/2004/07/ReferralRock.Api.Models">
<d4p1:ProgramId>sample string 1</d4p1:ProgramId>
<d4p1:ProgramName>sample string 2</d4p1:ProgramName>
<d4p1:ProgramTitle>sample string 3</d4p1:ProgramTitle>
</tertiaryInfo>
</referralQuery>
<resultInfo xmlns:d3p1="http://schemas.datacontract.org/2004/07/ReferralRock.Api.Models.Response">
<d3p1:Message>sample string 2</d3p1:Message>
<d3p1:Status>sample string 1</d3p1:Status>
</resultInfo>
<reward>
<id>5f2f2f41-c8ee-44c8-ac81-dc6d40395291</id>
<payoutId>88c969db-e464-45d8-8dff-5012340a7b5f</payoutId>
<payoutDescription>sample string 3</payoutDescription>
<programId>ba85c68a-ed8c-478a-9ae8-1c8b3a8ca1bd</programId>
<programName>sample string 5</programName>
<memberId>b2b42b4e-3ef7-4f50-9de4-72adc8ac9777</memberId>
<referralId>31e3baba-dd9c-4ded-876f-23247c07ee77</referralId>
<type>sample string 6</type>
<recipientId>82c24cc8-5862-4084-8fb1-df923f2fbadb</recipientId>
<recipientName>sample string 7</recipientName>
<recipientEmailAddress>sample string 8</recipientEmailAddress>
<recipientExternalIdentifier>sample string 9</recipientExternalIdentifier>
<externalIdentifier>sample string 10</externalIdentifier>
<status>sample string 11</status>
<amount>12</amount>
<createDate>2025-11-16T16:28:09.2997164+00:00</createDate>
<issueDate>2025-11-16T16:28:09.2997164+00:00</issueDate>
<eligibilityDate>2025-11-16T16:28:09.2997164+00:00</eligibilityDate>
<description>sample string 15</description>
<transactionID>d26876bb-7229-4444-ae6d-40bb77dc029e</transactionID>
<updateDate>2025-11-16T16:28:09.2997164+00:00</updateDate>
<referralDisplayName>sample string 17</referralDisplayName>
<currencyCode>sample string 18</currencyCode>
<source>sample string 19</source>
<programRewardRuleId>92248d80-6abb-418f-bb81-1c1dbd55357f</programRewardRuleId>
<paymentType>sample string 20</paymentType>
<paymentCode>sample string 21</paymentCode>
<completeNote>sample string 22</completeNote>
<reason>sample string 23</reason>
<reasonOther>sample string 24</reasonOther>
</reward>
</newRewardResult>
<newRewardResult>
<memberQuery>
<primaryInfo>
<memberId>sample string 1</memberId>
<referralCode>sample string 2</referralCode>
</primaryInfo>
<secondaryInfo>
<email>sample string 2</email>
<externalIdentifier>sample string 1</externalIdentifier>
</secondaryInfo>
<tertiaryInfo>
<programId>sample string 1</programId>
<programName>sample string 2</programName>
<programTitle>sample string 3</programTitle>
</tertiaryInfo>
</memberQuery>
<referralQuery>
<fuzzyInfo xmlns:d4p1="http://schemas.datacontract.org/2004/07/ReferralRock.Api.Models">
<d4p1:Identifier>sample string 1</d4p1:Identifier>
</fuzzyInfo>
<primaryInfo>
<referralId>sample string 1</referralId>
</primaryInfo>
<secondaryInfo>
<email>sample string 2</email>
<externalIdentifier>sample string 1</externalIdentifier>
<phoneNumber>sample string 3</phoneNumber>
</secondaryInfo>
<tertiaryInfo xmlns:d4p1="http://schemas.datacontract.org/2004/07/ReferralRock.Api.Models">
<d4p1:ProgramId>sample string 1</d4p1:ProgramId>
<d4p1:ProgramName>sample string 2</d4p1:ProgramName>
<d4p1:ProgramTitle>sample string 3</d4p1:ProgramTitle>
</tertiaryInfo>
</referralQuery>
<resultInfo xmlns:d3p1="http://schemas.datacontract.org/2004/07/ReferralRock.Api.Models.Response">
<d3p1:Message>sample string 2</d3p1:Message>
<d3p1:Status>sample string 1</d3p1:Status>
</resultInfo>
<reward>
<id>5f2f2f41-c8ee-44c8-ac81-dc6d40395291</id>
<payoutId>88c969db-e464-45d8-8dff-5012340a7b5f</payoutId>
<payoutDescription>sample string 3</payoutDescription>
<programId>ba85c68a-ed8c-478a-9ae8-1c8b3a8ca1bd</programId>
<programName>sample string 5</programName>
<memberId>b2b42b4e-3ef7-4f50-9de4-72adc8ac9777</memberId>
<referralId>31e3baba-dd9c-4ded-876f-23247c07ee77</referralId>
<type>sample string 6</type>
<recipientId>82c24cc8-5862-4084-8fb1-df923f2fbadb</recipientId>
<recipientName>sample string 7</recipientName>
<recipientEmailAddress>sample string 8</recipientEmailAddress>
<recipientExternalIdentifier>sample string 9</recipientExternalIdentifier>
<externalIdentifier>sample string 10</externalIdentifier>
<status>sample string 11</status>
<amount>12</amount>
<createDate>2025-11-16T16:28:09.2997164+00:00</createDate>
<issueDate>2025-11-16T16:28:09.2997164+00:00</issueDate>
<eligibilityDate>2025-11-16T16:28:09.2997164+00:00</eligibilityDate>
<description>sample string 15</description>
<transactionID>d26876bb-7229-4444-ae6d-40bb77dc029e</transactionID>
<updateDate>2025-11-16T16:28:09.2997164+00:00</updateDate>
<referralDisplayName>sample string 17</referralDisplayName>
<currencyCode>sample string 18</currencyCode>
<source>sample string 19</source>
<programRewardRuleId>92248d80-6abb-418f-bb81-1c1dbd55357f</programRewardRuleId>
<paymentType>sample string 20</paymentType>
<paymentCode>sample string 21</paymentCode>
<completeNote>sample string 22</completeNote>
<reason>sample string 23</reason>
<reasonOther>sample string 24</reasonOther>
</reward>
</newRewardResult>
</ArrayOfnewRewardResult>