get NEOUSign Up Details
Retrieves NEOU sign-up details, including the partnership URL.
Use this to drive the user to the NEOU website/app to create an account under the Advanta partnership.
Return
VirtualFitnessSignUpDetails with the URL and other metadata.
Throws
if retrieval fails.
Android (Kotlin)
lifecycleScope.launch {
try {
val details = AFCore.virtualFitness().getNEOUSignUpDetails()
openInWebView(details.url) // Or open in external browser
} catch (t: Throwable) {
showError("NEOU sign-up not available: ${t.message}")
}
}Content copied to clipboard
iOS (Swift)
Task {
do {
let details = try await AFCore.shared.virtualFitness().getNEOUSignUpDetails()
self.openInWebView(details.url) // Or open in external browser
} catch {
self.showError("NEOU sign-up not available: \(error.localizedDescription)")
}
}Content copied to clipboard