AuthenticateUserWithFido response
The
AuthenticateUserWithFido
response returns the transaction ID (txnId
) required for the authentication request from the mobile device. authenticateUserWithFido input fields provides details about the
authenticateUserWithFido
input fields.Input Field | Required? | Type | Purpose |
|---|---|---|---|
status | Y | String | Unique status code. 0000=Success. Any other value is an error. |
statusMessage | Y | String | Message corresponding to the status of the request. If the status is not 0000 (success), the message is an error message. |
transactionId | A unique ID for the transaction that is used to call one of the feedback APIs. |
Example authenticateUserWithFido request
<?xml version='1.0' encoding='UTF-8'?> <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"> <S:Body> <AuthenticateUserWithFidoResponse xmlns="https://schemas.symantec.com/vip/2011/04/vipuserservices"> <requestId>FIDOAuth_478263478263</requestId> <status>0000</status> <statusMessage>Success</statusMessage> <transactionId>e7185041-0002-45ef-9eaf-df412bb8a9dd</transactionId> </AuthenticateUserWithFidoResponse> </S:Body> </S:Envelope>