Multi-Factor Authentication Reset

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

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>263855</id>
  <events>
    <event>
      <id>566834</id>
      <date>03/30/2021 11:37</date>
      <name>Multifactor Authentication Reset</name>
    </event>
  </events>
</recipient>

Response JSON

{
  "recipient": {
    "id": "263863",
    "events": [
      {
        "id": "566879",
        "date": "03/31/2021 16:40",
        "name": "Multifactor Authentication Reset"
      }
    ]
  }
}