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": "b003263f-daae-438b-8e95-6ed9bcd39501",
"payoutId": "8652a507-ba8b-46f9-a438-24c8ee48051e",
"payoutDescription": "sample string 3",
"programId": "675c68fc-1c1d-4d1c-9808-79eb682bdd56",
"programName": "sample string 5",
"memberId": "8df2fefa-d0f0-463c-86b0-4c201b340596",
"referralId": "54f9062d-8a40-4738-8d40-bf992990fb50",
"type": "sample string 6",
"recipientId": "9f40c041-1296-4173-97a4-0043dffde929",
"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-04-17T09:18:20.114777Z",
"issueDate": "2026-04-17T09:18:20.114777Z",
"eligibilityDate": "2026-04-17T09:18:20.114777Z",
"description": "sample string 15",
"transactionID": "40d5d8c8-7caf-423d-9a8f-91e2a7958f8b",
"updateDate": "2026-04-17T09:18:20.114777Z",
"referralDisplayName": "sample string 17",
"currencyCode": "sample string 18",
"source": "sample string 19",
"programRewardRuleId": "7cb711b9-399c-4606-aa0f-f88d9eda70db",
"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>b003263f-daae-438b-8e95-6ed9bcd39501</id>
<payoutId>8652a507-ba8b-46f9-a438-24c8ee48051e</payoutId>
<payoutDescription>sample string 3</payoutDescription>
<programId>675c68fc-1c1d-4d1c-9808-79eb682bdd56</programId>
<programName>sample string 5</programName>
<memberId>8df2fefa-d0f0-463c-86b0-4c201b340596</memberId>
<referralId>54f9062d-8a40-4738-8d40-bf992990fb50</referralId>
<type>sample string 6</type>
<recipientId>9f40c041-1296-4173-97a4-0043dffde929</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-04-17T09:18:20.114777+00:00</createDate>
<issueDate>2026-04-17T09:18:20.114777+00:00</issueDate>
<eligibilityDate>2026-04-17T09:18:20.114777+00:00</eligibilityDate>
<description>sample string 15</description>
<transactionID>40d5d8c8-7caf-423d-9a8f-91e2a7958f8b</transactionID>
<updateDate>2026-04-17T09:18:20.114777+00:00</updateDate>
<referralDisplayName>sample string 17</referralDisplayName>
<currencyCode>sample string 18</currencyCode>
<source>sample string 19</source>
<programRewardRuleId>7cb711b9-399c-4606-aa0f-f88d9eda70db</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>