PollFidoAuthStatus response
The PollFidoAuthStatus API returns the status of authentication requests for FIDO-enabled authenticators.
PollFidoAuthStatus
output fields provides the details about the PollFidoAuthStatus
output fields:Input Field | Required? | Type | Purpose |
|---|---|---|---|
requestID | Y | String | A unique identifier of the request for the enterprise application. This identifier may be useful for troubleshooting purposes. |
status | Y | String | Unique status code for the PollFidoAuthStatus request. 0000=Success. Any other value is an error. |
statusMessage | Y | String | Message corresponding to the status of the PollFidoAuthStatus request. If the status is not 0000 (success), the message is an error message. |
transactionStatus | Y | List | Status of the FIDO authentication request or requests previously sent using authenticateUserWithFido .This field includes separate status and statusMessage fields for each transaction status returned. |
Example PollFidoAuthStatus response
<?xml version='1.0' encoding='UTF-8'?> <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"> <S:Body> <PollFidoAuthStatusResponse xmlns="https://schemas.symantec.com/vip/2011/04/vipuserservices"> <requestId>AUTHWPUSH_478263478263</requestId> <status>0000</status> <statusMessage>Success</statusMessage> <transactionStatus> <transactionId>e7185041-0002-45ef-9eaf-df412bb8a9dd</transactionId> <status>7000</status> <statusMessage>FIDO_AUTH_TRANSACTION_SUCCESS</statusMessage> </transactionStatus> </PollFidoAuthStatusResponse> </S:Body> </S:Envelope>
Response status codes for PollFidoAuthStatus
PollFidoAuthStatus
response status codes provides the possible status codes and messages that the PollFidoAuthStatus
response can return:Status | Message |
|---|---|
7000 | FIDO_AUTH_TRANSACTION_SUCCESS |
7010 | FIDO_AUTH_TRANSACTION_IN_PROGRESS |
7011 | FIDO_AUTH_TRANSACTION_FAILED |
7012 | FIDO_AUTH_INVALID_TRANSACTION |