GET web_api/securelink/confirmation_questions/{id}

Retrieve the result of a SecureLink Confirmation Question request by its RequestId.

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

A containing the confirmation response status.

SecureLinkConfirmationResult
NameDescriptionTypeAdditional information
Confirmed

Only set to True if the end user has answered "yes" to your confirmation question

boolean

None.

ConfirmationDateTime

The DateTime value for when the user responded to your confirmation question

date

None.

ErrorMessage

Only populated if there was an error in retrieving the SecureLink Confirmation Question result

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Confirmed": true,
  "ConfirmationDateTime": "2026-06-27T12:28:31.3674131-05:00",
  "ErrorMessage": "sample string 1"
}

application/xml, text/xml

Sample:
<SecureLinkConfirmationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://api.giact.com/verificationservices/v5">
  <ConfirmationDateTime>2026-06-27T12:28:31.3674131-05:00</ConfirmationDateTime>
  <Confirmed>true</Confirmed>
  <ErrorMessage>sample string 1</ErrorMessage>
</SecureLinkConfirmationResult>