Modify a verification process on the fly

Modifies verification process, changes the flow


URL: baseURL/scenario/{scenarioID}/verify/{verificationID}

Method: PUT

Headers:

Content-Type: application/json
principalId: {accountID}

Example Request:

curl --location --request PUT 'baseURL/scenario/7280ecaa-a132-4908-8f26-c1ecbe138d98/verify/10987a69-a130-4a8f-9b28-9bb825f53d33' \
--header 'Content-Type: application/json' \
--header 'principalId: 1' \
--data '{
    "action": "skip_channel"
}'

Where:

Param NameDescriptionAccepted values
actionDefines the action to take for this verification. User can cancel the verification, or skip to next channel immediatelycancel skip_channel

Example response

{
  "verify_id": "10987a69-a130-4a8f-9b28-9bb825f53d33",
  "action": "skip_channel"
}