EXTENSION
CustomerManager
¶
Methods¶
addPaymentMethod(customerId:paymentMethodType:)
¶
public func addPaymentMethod(customerId: String, paymentMethodType: AddPaymentMethodType) async -> Result<PaymentMethod, AnsaApiError>
Adds a payment method of AddPaymentMethodType
to a Customer
- Parameters:
- customerId: Unique identifier for the customer.
-
paymentMethodType: The type of payment method to be added
-
Returns: A
PaymentMethodCollection
or anAnsaApiError
Parameters¶
Name | Description |
---|---|
customerId | Unique identifier for the customer. |
paymentMethodType | The type of payment method to be added |
deletePaymentMethod(customerId:paymentMethodId:)
¶
public func deletePaymentMethod(customerId: String, paymentMethodId: String) async -> Result<Void, AnsaApiError>
Deletes a payment method from a Customer
- Parameters:
- customerId: Unique identifier for the customer.
- paymentMethodId: Unique identifier for the payment method to delete.
Parameters¶
Name | Description |
---|---|
customerId | Unique identifier for the customer. |
paymentMethodId | Unique identifier for the payment method to delete. |
setAutoReloadConfiguration(request:)
¶
public func setAutoReloadConfiguration(request: AutoReloadConfigurationRequest) async -> Result<AutoReloadConfiguration, AnsaApiError>
Sets the auto reload configuration for a specific customer
- Parameters:
-
request: The request for the
AutoReloadConfiguration
viaAutoReloadConfigurationRequest
-
Returns: The updated
AutoReloadConfiguration
or anAnsaApiError
Parameters¶
Name | Description |
---|---|
request | The request for the AutoReloadConfiguration via AutoReloadConfigurationRequest |
addBalance(request:)
¶
Add funds to a Customer
balance by charging a provided PaymentMethod
.
- Parameters:
-
request: The specifics for the funds increase
-
Returns: The resulting updated
BalanceUpdate
or anAnsaApiError
Parameters¶
Name | Description |
---|---|
request | The specifics for the funds increase |
useBalance(request:)
¶
Spend funds from a Customer
balance for a purchase.
- Parameters:
-
request: The specifics for the balance decrease
-
Returns: The resulting updated
BalanceUpdate
or anAnsaApiError
Parameters¶
Name | Description |
---|---|
request | The specifics for the balance decrease |
createVirtualCard(customerId:)
¶
Create a [VirtualCard] for on device provisioning via [provisionVirtualCard].
NOTE: The merchant must be enrolled in the Ansa virtual card program in order to use this API.¶
- Parameters:
-
customerId Unique identifier for the customer.
-
Returns: The created
VirtualCard
or anApiResult.Error
provisionVirtualCard(request:)
¶
public func provisionVirtualCard(
request: ProvisioningRequest
) async -> Result<Provisioning, AnsaApiError>
Facilitates the exchange of information to provision a virtual card into a user's digital wallet.
NOTE: The merchant must be enrolled in the Ansa virtual card program in order to use this API.¶
- Parameters:
-
request The specifics for the provisioning
-
Returns: The [Provisioning] result from adding it to the user's virtual wallet.