Fraud Monitor Override

Endpoint: https://rest.virtualincentives.com/{version}/{format}/recipients/{id}/fraudoverride

Method: PUT

Definitions

FieldTypeDescription
noteoptional
string(500)
Optional note to be stored with the requested action.
eventsresponse 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>263856</id>
  <events>
    <event>
      <id>566839</id>
      <date>03/30/2021 11:41</date>
      <name>Reward Sent - FM Override</name>
    </event>
  </events>
</recipient>

Response JSON

{
  "recipient": {
    "id": "263864",
    "events": [
      {
        "id": "566884",
        "date": "03/31/2021 16:43",
        "name": "Reward Sent - FM Override"
      }
    ]
  }
}