POST web_api/securelink/mobile_locations

Send a new SecureLink Mobile Location request to a user's mobile device.

Request Information

URI Parameters

None.

Body Parameters

The phone number to send the mobile location request to should be included in the body of the request.

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>