GET web_api/securelink/confirmation_questions/{id}
Get the result of a SecureLink Confirmation Question request by its RequestId value.
Request Information
URI Parameters
Name | Description | Type | Additional 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 result of the SecureLink Confirmation Question request
SecureLinkConfirmationResultName | Description | Type | Additional 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": "2025-04-28T06:38:49.927151-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>2025-04-28T06:38:49.927151-05:00</ConfirmationDateTime> <Confirmed>true</Confirmed> <ErrorMessage>sample string 1</ErrorMessage> </SecureLinkConfirmationResult>