GET web_api/securelink/security_codes/{id}/verifications

Check to see if a verification attempt has been made for a Security Code request.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The SecureLink RequestId value that was returned in the POST request's response body should be included in the GET request's URL to refer to that specific item.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The response body will contain a SecureLinkCodeVerificationResult object. Refer to the "Verified" field to see if an attempt has been made to verify the Security Code value for the request. This value will be null until a GET request is received for the RequestId that also contains a SecurityCode value to verify.

SecureLinkCodeVerificationResult
NameDescriptionTypeAdditional information
Verified

Has the code been verified yet?

boolean

None.

ErrorMessage

Only populated if there is an error processing the request

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Verified": true,
  "ErrorMessage": "sample string 1"
}

application/xml, text/xml

Sample:
<SecureLinkCodeVerificationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://api.giact.com/verificationservices/v5">
  <ErrorMessage>sample string 1</ErrorMessage>
  <Verified>true</Verified>
</SecureLinkCodeVerificationResult>