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((result) -> result.fold(
(TFApplicationProfiles profiles, String correlationId) -> {
// handle success
},
(Error error, String correlationId) -> {
// handle errors
}
));