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": "41d854be-668c-4c2a-96c6-86f69978dc16",
"payoutId": "a9f22563-d04f-4f0f-9923-f38ce9e03455",
"payoutDescription": "sample string 3",
"programId": "775e2e97-a428-44ab-b803-6ecd9d2a9833",
"programName": "sample string 5",
"memberId": "f78bad97-31ed-4597-8262-d27e85821bc3",
"referralId": "ee70be41-5aae-440f-bf24-7d067741ae42",
"type": "sample string 6",
"recipientId": "cbeca8d2-0de1-449d-8a27-5f04d0b8753b",
"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-17T12:08:41.2482578Z",
"issueDate": "2026-02-17T12:08:41.2482578Z",
"eligibilityDate": "2026-02-17T12:08:41.2482578Z",
"description": "sample string 15",
"transactionID": "1afb7a9e-a8cf-46eb-93cc-e3873f80429a",
"updateDate": "2026-02-17T12:08:41.2482578Z",
"referralDisplayName": "sample string 17",
"currencyCode": "sample string 18",
"source": "sample string 19",
"programRewardRuleId": "3f538712-a4f3-4f1c-b7e7-bb04369ca99f",
"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>41d854be-668c-4c2a-96c6-86f69978dc16</id>
<payoutId>a9f22563-d04f-4f0f-9923-f38ce9e03455</payoutId>
<payoutDescription>sample string 3</payoutDescription>
<programId>775e2e97-a428-44ab-b803-6ecd9d2a9833</programId>
<programName>sample string 5</programName>
<memberId>f78bad97-31ed-4597-8262-d27e85821bc3</memberId>
<referralId>ee70be41-5aae-440f-bf24-7d067741ae42</referralId>
<type>sample string 6</type>
<recipientId>cbeca8d2-0de1-449d-8a27-5f04d0b8753b</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-17T12:08:41.2482578+00:00</createDate>
<issueDate>2026-02-17T12:08:41.2482578+00:00</issueDate>
<eligibilityDate>2026-02-17T12:08:41.2482578+00:00</eligibilityDate>
<description>sample string 15</description>
<transactionID>1afb7a9e-a8cf-46eb-93cc-e3873f80429a</transactionID>
<updateDate>2026-02-17T12:08:41.2482578+00:00</updateDate>
<referralDisplayName>sample string 17</referralDisplayName>
<currencyCode>sample string 18</currencyCode>
<source>sample string 19</source>
<programRewardRuleId>3f538712-a4f3-4f1c-b7e7-bb04369ca99f</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>