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": "9ab53020-faa6-4b6a-962f-416f88cf1128",
"payoutId": "1f22eba7-b6fb-4097-9022-276b0c146f06",
"payoutDescription": "sample string 3",
"programId": "e4332bec-f0b2-4b95-8df2-971b1da34b99",
"programName": "sample string 5",
"memberId": "bc5adc42-4095-49e5-b8bc-de9fd810cfa0",
"referralId": "ef396188-25dd-4242-87fa-f9c983b1850c",
"type": "sample string 6",
"recipientId": "40511f5a-f429-4e9c-9476-8c5e97572ca6",
"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-03-26T14:30:39.6750775Z",
"issueDate": "2026-03-26T14:30:39.6750775Z",
"eligibilityDate": "2026-03-26T14:30:39.6750775Z",
"description": "sample string 15",
"transactionID": "46c034d4-fe4a-4dff-814d-c916008c698a",
"updateDate": "2026-03-26T14:30:39.6750775Z",
"referralDisplayName": "sample string 17",
"currencyCode": "sample string 18",
"source": "sample string 19",
"programRewardRuleId": "a774f471-4836-493c-a91e-85792c48e0ba",
"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>9ab53020-faa6-4b6a-962f-416f88cf1128</id>
<payoutId>1f22eba7-b6fb-4097-9022-276b0c146f06</payoutId>
<payoutDescription>sample string 3</payoutDescription>
<programId>e4332bec-f0b2-4b95-8df2-971b1da34b99</programId>
<programName>sample string 5</programName>
<memberId>bc5adc42-4095-49e5-b8bc-de9fd810cfa0</memberId>
<referralId>ef396188-25dd-4242-87fa-f9c983b1850c</referralId>
<type>sample string 6</type>
<recipientId>40511f5a-f429-4e9c-9476-8c5e97572ca6</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-03-26T14:30:39.6750775+00:00</createDate>
<issueDate>2026-03-26T14:30:39.6750775+00:00</issueDate>
<eligibilityDate>2026-03-26T14:30:39.6750775+00:00</eligibilityDate>
<description>sample string 15</description>
<transactionID>46c034d4-fe4a-4dff-814d-c916008c698a</transactionID>
<updateDate>2026-03-26T14:30:39.6750775+00:00</updateDate>
<referralDisplayName>sample string 17</referralDisplayName>
<currencyCode>sample string 18</currencyCode>
<source>sample string 19</source>
<programRewardRuleId>a774f471-4836-493c-a91e-85792c48e0ba</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>