Associated Application Profiles
Client requirements
Get Profiles associated with the current device
caution
It's possible that recently associated profiles are missing from the response of this API. If that's your case you should wait up to 150 seconds before considering the profiles invalid.
- iOS (Swift)
- Android (Java)
trustfactorClient.getAssociatedApplicationProfiles() { result, correlationID in
switch result {
case .success(let response):
// response type: TFApplicationProfiles
case .failure(let error):
// handle errors
}
}
trustfactorClient.getAssociatedApplicationProfiles(new Result<TFApplicationProfiles, Error>() {
@Override
public void onSuccess(TFApplicationProfiles result, String correlationId) {
// result type: TFApplicationProfiles
}
@Override
public void onFailure(Error error, String correlationId) {
// handle errors
}
});