Skip to content

EXTENSION

CustomerManager

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 an AnsaApiError

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 via AutoReloadConfigurationRequest

  • Returns: The updated AutoReloadConfiguration or an AnsaApiError

Parameters

Name Description
request The request for the AutoReloadConfiguration via AutoReloadConfigurationRequest

addBalance(request:)

public func addBalance(
  request: AddBalanceRequest
) async -> Result<
  BalanceUpdate, AnsaApiError
>

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 an AnsaApiError

Parameters

Name Description
request The specifics for the funds increase

useBalance(request:)

public func useBalance(
  request: UseBalanceRequest
) async -> Result<
  BalanceUpdate, AnsaApiError
>

Spend funds from a Customer balance for a purchase.

  • Parameters:
  • request: The specifics for the balance decrease

  • Returns: The resulting updated BalanceUpdate or an AnsaApiError

Parameters

Name Description
request The specifics for the balance decrease

createVirtualCard(customerId:)

public func createVirtualCard(customerId: String) async -> Result<VirtualCard, AnsaApiError>

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 an ApiResult.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.