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 APIarrow-up-right 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 APIarrow-up-right 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 APIarrow-up-right. 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?