PUT v1/Customer/VerifyAuthorizationCode

Verify the customer's authentication code to ensure the device they received the code on is theirs

Request Information

Parameters (ParameterName * = required)

Name
Description
Sample Value
AuthorizationCode *
The code sent to the user's device to authorize access
684853

Response Information

Response body formats

application/json, text/json

Sample:
{
  "success": true,
  "authorizationCode": "sample string 2",
  "status": "Success",
  "message": "sample string 3",
  "retryEligible": true
}

application/xml, text/xml

Sample:
<VerifyAuthorizationCodeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ria.Digital.WebServices.DataModels">
  <_x003C_Message_x003E_k__BackingField>sample string 3</_x003C_Message_x003E_k__BackingField>
  <_x003C_RetryEligible_x003E_k__BackingField>true</_x003C_RetryEligible_x003E_k__BackingField>
  <_x003C_Status_x003E_k__BackingField>Success</_x003C_Status_x003E_k__BackingField>
  <_x003C_AuthorizationCode_x003E_k__BackingField>sample string 2</_x003C_AuthorizationCode_x003E_k__BackingField>
  <_x003C_Success_x003E_k__BackingField>true</_x003C_Success_x003E_k__BackingField>
</VerifyAuthorizationCodeResponse>