POST web_api/securelink/security_codes/email

Send a new SecureLink Security Code via Email message request. This sends an out-of-band secret code to your end user. We do not expose this secret code to you. You can only verify if a value given to you by your end user matches the value that our system sent to your end user.

Request Information

URI Parameters

None.

Body Parameters

The email address to send the Security Code to should be included in the request body.

string

Request Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The response body will include a SecureLink Request Result which includes the RequestId value that is needed to check on the result of the request using the GET action

SecureLinkRequestResult
NameDescriptionTypeAdditional information
SecureLinkRequestId

The SecureLink RequestId value that you will use to retrieve the result of the user response

integer

None.

ErrorMessage

Only populated if there is an error processing the request

string

None.

Response Formats

application/json, text/json

Sample:
{
  "SecureLinkRequestId": 1,
  "ErrorMessage": "sample string 1"
}

application/xml, text/xml

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