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": "2026-01-09T01:16:59.3936863Z",
"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": "2026-01-09T01:16:59.3936863Z",
"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>2026-01-09T01:16:59.3936863+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>2026-01-09T01:16:59.3936863+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": "cbd0decd-d605-4a5f-aac2-0419489aa9a5",
"payoutId": "9c7ea6fc-dc1b-4ac5-82b3-ffe8b89f49bb",
"payoutDescription": "sample string 3",
"programId": "2856cc65-e381-4e81-9694-79bff9ab95c4",
"programName": "sample string 5",
"memberId": "abe67398-77fe-453f-83ba-ef624d78686b",
"referralId": "f6c597bb-3bbd-4c75-a711-767d708f5851",
"type": "sample string 6",
"recipientId": "cffa5ced-aaba-4b76-86ee-9c3c8419bac5",
"recipientName": "sample string 7",
"recipientEmailAddress": "sample string 8",
"recipientExternalIdentifier": "sample string 9",
"externalIdentifier": "sample string 10",
"status": "sample string 11",
"amount": 12.0,
"createDate": "2026-01-09T01:16:59.4406202Z",
"issueDate": "2026-01-09T01:16:59.4406202Z",
"eligibilityDate": "2026-01-09T01:16:59.4406202Z",
"description": "sample string 15",
"transactionID": "e8a3280c-7ee0-4e09-a330-22178fda6420",
"updateDate": "2026-01-09T01:16:59.4406202Z",
"referralDisplayName": "sample string 17",
"currencyCode": "sample string 18",
"source": "sample string 19",
"programRewardRuleId": "53ec3807-8e4c-4654-ba9b-dcb3a79b49cc",
"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": "cbd0decd-d605-4a5f-aac2-0419489aa9a5",
"payoutId": "9c7ea6fc-dc1b-4ac5-82b3-ffe8b89f49bb",
"payoutDescription": "sample string 3",
"programId": "2856cc65-e381-4e81-9694-79bff9ab95c4",
"programName": "sample string 5",
"memberId": "abe67398-77fe-453f-83ba-ef624d78686b",
"referralId": "f6c597bb-3bbd-4c75-a711-767d708f5851",
"type": "sample string 6",
"recipientId": "cffa5ced-aaba-4b76-86ee-9c3c8419bac5",
"recipientName": "sample string 7",
"recipientEmailAddress": "sample string 8",
"recipientExternalIdentifier": "sample string 9",
"externalIdentifier": "sample string 10",
"status": "sample string 11",
"amount": 12.0,
"createDate": "2026-01-09T01:16:59.4406202Z",
"issueDate": "2026-01-09T01:16:59.4406202Z",
"eligibilityDate": "2026-01-09T01:16:59.4406202Z",
"description": "sample string 15",
"transactionID": "e8a3280c-7ee0-4e09-a330-22178fda6420",
"updateDate": "2026-01-09T01:16:59.4406202Z",
"referralDisplayName": "sample string 17",
"currencyCode": "sample string 18",
"source": "sample string 19",
"programRewardRuleId": "53ec3807-8e4c-4654-ba9b-dcb3a79b49cc",
"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>cbd0decd-d605-4a5f-aac2-0419489aa9a5</id>
<payoutId>9c7ea6fc-dc1b-4ac5-82b3-ffe8b89f49bb</payoutId>
<payoutDescription>sample string 3</payoutDescription>
<programId>2856cc65-e381-4e81-9694-79bff9ab95c4</programId>
<programName>sample string 5</programName>
<memberId>abe67398-77fe-453f-83ba-ef624d78686b</memberId>
<referralId>f6c597bb-3bbd-4c75-a711-767d708f5851</referralId>
<type>sample string 6</type>
<recipientId>cffa5ced-aaba-4b76-86ee-9c3c8419bac5</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>2026-01-09T01:16:59.4406202+00:00</createDate>
<issueDate>2026-01-09T01:16:59.4406202+00:00</issueDate>
<eligibilityDate>2026-01-09T01:16:59.4406202+00:00</eligibilityDate>
<description>sample string 15</description>
<transactionID>e8a3280c-7ee0-4e09-a330-22178fda6420</transactionID>
<updateDate>2026-01-09T01:16:59.4406202+00:00</updateDate>
<referralDisplayName>sample string 17</referralDisplayName>
<currencyCode>sample string 18</currencyCode>
<source>sample string 19</source>
<programRewardRuleId>53ec3807-8e4c-4654-ba9b-dcb3a79b49cc</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>cbd0decd-d605-4a5f-aac2-0419489aa9a5</id>
<payoutId>9c7ea6fc-dc1b-4ac5-82b3-ffe8b89f49bb</payoutId>
<payoutDescription>sample string 3</payoutDescription>
<programId>2856cc65-e381-4e81-9694-79bff9ab95c4</programId>
<programName>sample string 5</programName>
<memberId>abe67398-77fe-453f-83ba-ef624d78686b</memberId>
<referralId>f6c597bb-3bbd-4c75-a711-767d708f5851</referralId>
<type>sample string 6</type>
<recipientId>cffa5ced-aaba-4b76-86ee-9c3c8419bac5</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>2026-01-09T01:16:59.4406202+00:00</createDate>
<issueDate>2026-01-09T01:16:59.4406202+00:00</issueDate>
<eligibilityDate>2026-01-09T01:16:59.4406202+00:00</eligibilityDate>
<description>sample string 15</description>
<transactionID>e8a3280c-7ee0-4e09-a330-22178fda6420</transactionID>
<updateDate>2026-01-09T01:16:59.4406202+00:00</updateDate>
<referralDisplayName>sample string 17</referralDisplayName>
<currencyCode>sample string 18</currencyCode>
<source>sample string 19</source>
<programRewardRuleId>53ec3807-8e4c-4654-ba9b-dcb3a79b49cc</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>