Delete binding from merchant application
Last updated
Was this helpful?
Was this helpful?
visaCTFHelper.removeBinding(correlationId,
vProvisionTokenId,
new RemoveBindingListener() {
@Override
public void onError(TMGClientException exception) {
// Handle error
}
@Override
public void onSuccess() {
// Update local binding state if needed
}
});let vProvisionedTokenID: String = ""
let correlationID: String = ""
// 1. Start remove binding
visaCTFHelper.removeBinding(forVProvisionedTokenID: vProvisionedTokenID,
correlationID: correlationID) { error in
// 2. Remove binding result
if error == nil {
// Update local binding state if needed
} else {
// Handle error
}
}