POST api/rewards/issue
Issue a specific reward.
Request Information
URI Parameters
Query String: overrideIneligible={overrideIneligible}
| Name | Description | Type | Additional information |
|---|---|---|---|
| overrideIneligible |
Allows you to override eligiblity date rules. Issue rewards with eligibility dates in the future. Optional. |
boolean |
Default value is False |
Body Parameters
Data needed for issuing a reward. Required.
Type: IssueRewardInfo
| Name | Description | Type | Additional information |
|---|---|---|---|
| rewardId |
The unique ID of the reward to issue. |
string |
Required |
| recipientInfo |
(deprecated) Additional info about the reward to issue. In most cases, this can be left blank. For PayPal, include the email address of the recipient. Optional. |
string |
None. |
| note |
A message to be sent to the recipient of the reward. Optional. |
string |
None. |
Request Formats
application/json, text/json
{
"rewardId": "sample string 1",
"recipientInfo": "sample string 2",
"note": "sample string 3"
}
application/xml, text/xml
<issueReward xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <note>sample string 3</note> <recipientInfo>sample string 2</recipientInfo> <rewardId>sample string 1</rewardId> </issueReward>
Response Information
Resource Description
[HTTP Status 200 - OK]
Type: IssueRewardResult
| Name | Description | Type | Additional information |
|---|---|---|---|
| reward |
The reward, after the attempt to issue it has been received. |
Reward |
None. |
| resultInfo |
Details about the results of the request. |
ResultInfo |
None. |
Response Formats
application/json, text/json
{
"reward": {
"id": "8f55f9ec-6c3f-4846-b01b-ff407a029c77",
"payoutId": "33bed8a6-5b05-4fc4-a545-1da75b868a8c",
"payoutDescription": "sample string 3",
"programId": "715c54f6-f70d-4186-83b5-860498ef17a0",
"programName": "sample string 5",
"memberId": "35b019fb-10fe-477c-b4dc-8a68e9af617e",
"referralId": "c35e5f4f-6c91-4655-adc4-172558796ce7",
"type": "sample string 6",
"recipientId": "162d684e-ce76-4814-84fe-1ea92092dd6e",
"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-02-02T09:28:07.3993561Z",
"issueDate": "2026-02-02T09:28:07.3993561Z",
"eligibilityDate": "2026-02-02T09:28:07.3993561Z",
"description": "sample string 15",
"transactionID": "5085aa24-6a97-46a1-a167-a7970d125651",
"updateDate": "2026-02-02T09:28:07.3993561Z",
"referralDisplayName": "sample string 17",
"currencyCode": "sample string 18",
"source": "sample string 19",
"programRewardRuleId": "92333b4e-fc2f-4ecb-b49a-9feaad5235da",
"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
<issueRewardResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<resultInfo xmlns:d2p1="http://schemas.datacontract.org/2004/07/ReferralRock.Api.Models.Response">
<d2p1:Message>sample string 2</d2p1:Message>
<d2p1:Status>sample string 1</d2p1:Status>
</resultInfo>
<reward>
<id>8f55f9ec-6c3f-4846-b01b-ff407a029c77</id>
<payoutId>33bed8a6-5b05-4fc4-a545-1da75b868a8c</payoutId>
<payoutDescription>sample string 3</payoutDescription>
<programId>715c54f6-f70d-4186-83b5-860498ef17a0</programId>
<programName>sample string 5</programName>
<memberId>35b019fb-10fe-477c-b4dc-8a68e9af617e</memberId>
<referralId>c35e5f4f-6c91-4655-adc4-172558796ce7</referralId>
<type>sample string 6</type>
<recipientId>162d684e-ce76-4814-84fe-1ea92092dd6e</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-02-02T09:28:07.3993561+00:00</createDate>
<issueDate>2026-02-02T09:28:07.3993561+00:00</issueDate>
<eligibilityDate>2026-02-02T09:28:07.3993561+00:00</eligibilityDate>
<description>sample string 15</description>
<transactionID>5085aa24-6a97-46a1-a167-a7970d125651</transactionID>
<updateDate>2026-02-02T09:28:07.3993561+00:00</updateDate>
<referralDisplayName>sample string 17</referralDisplayName>
<currencyCode>sample string 18</currencyCode>
<source>sample string 19</source>
<programRewardRuleId>92333b4e-fc2f-4ecb-b49a-9feaad5235da</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>
</issueRewardResult>