Resend Link
Endpoint: https://rest.virtualincentives.com/{version}/{format}/recipients/{id}/resend
Method: PUT
Definitions
Field | Type | Description |
---|---|---|
note | optional string(500) | Optional note to be stored with the requested action. |
events | response only object | A list of all the events related to this action. For definitions, see Get Recipient Events. |
Examples
Request XML (Optional)
<recipient>
<note>Test</note>
</recipient>
Request JSON (Optional)
{
"recipient": {
"note":"Test"
}
}
Response XML
<recipient>
<id>263854</id>
<events>
<event>
<id>566828</id>
<date>03/30/2021 11:33</date>
<name>Reward Email Resent</name>
</event>
</events>
</recipient>
Response JSON
{
"recipient": {
"id": "263862",
"events": [
{
"id": "566873",
"date": "03/31/2021 16:37",
"name": "Reward Email Resent"
}
]
}
}
Updated over 3 years ago