Extend Link
Endpoint: https://rest.virtualincentives.com/{version}/{format}/recipients/{id}/extend
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>566827</id>
      <date>03/30/2021 11:32</date>
      <name>Reward Email Link Extended</name>
    </event>
  </events>
</recipient>Response JSON
{
  "recipient": {
    "id": "263862",
    "events": [
      {
        "id": "566872",
        "date": "03/31/2021 16:36",
        "name": "Reward Email Link Extended"
      }
    ]
  }
}Updated 6 months ago