Welcome to our new developer portal! Use the "Ask" button to chat with our AI Agent.
For the complete documentation index, see llms.txt. This page is also available as Markdown.

Check device binding

Call this before you start device binding, or before you authenticate a transaction.

Use getBindingState (Thales SDK) to check whether a token is already bound on the device.

SDK integration

String vProvisionedTokenId = ""; // Example
try {
    BindingState state = visaCTFHelper.getBindingState(vProvisionedTokenId);
} catch (TMGClientException e) {
    // Handle error
}
let vProvisionedTokenID = "" // Example
do {
    let state = try visaCTFHelper.bindingState(forVProvisionedTokenID: vProvisionedTokenID)
} catch let error {
    // Handle the error
}

Depending on the returned state, continue with one of these flows:

Last updated

Was this helpful?