Revalidate Profiles
Client requirements
Revalidate profiles from the current device
- iOS (Swift)
- Android (Java)
trustfactorClient.revalidateApplicationProfile(profileId: <TFApplicationProfile.RawIdentifier>, appAuxData: <string>, signedAuxData: <string>) { result, correlationId in
switch result {
case .success(_):
// handle success
case .failure(let error):
// handle errors
}
}
trustfactorClient.revalidateApplicationProfile(profileId: <String>, appAuxData: <String>, signedAuxData: <String>,new Result<Boolean, Error>() {
@Override
public void onSuccess(Boolean result, String correlationId) {
// handle success
}
@Override
public void onFailure(Error error, String correlationId) {
// handle errors
}
});