Add OperationID to an authentication

Web SDK supports the association of an identifier to an authentication operation for the purpose of audibility, orchestration or analytics. This feature therefore pairs with the Telemetry API which integrators can query to retrieve information about a specific authentication event via the WebSDK.

Appending the OperationID

The operation must be generated by the integrator and set to the Web SDK, here's how:

await openKeylessWebSocketConnection(sym, {
  ...,
  operation: {
    id: OPERATION_ID
  }
})

Retrieving the KeylessID

Note if you are planning to call the Telemetry API you'll see you need to include the KeylessID ({userId}) that Keyless use to identity that specific user. This can be retrieved via a separate call to the Check Keyless Client Device API. In order to use this API you will need:

Input
Explanation

api_key

The authorization key provided to you by Keyless.

customer

The name associated with the backend tenant provided to you by Keyless.

username

The username provided during WebSDK enrollment and required for ongoing authentications.

Last updated

Was this helpful?