Payments
The Payments feature lets members review incentive payment history. If an organization is configured for incentives, this returns records such as ACH transfers or digital gift cards.
Fetch payment history
Android (Kotlin)
val payments = withContext(Dispatchers.IO) {
AFCore.payments().get()
}
iOS (Swift)
let payments = try await AFCore.shared.payments().get()
UI patterns & tips
- Show list grouped by month or type.
- Include icons for ACH, gift card, etc.
Error handling
- Handle empty lists gracefully: “No incentives yet.”
Document updated: 2025-11-20