Skip to content

PROTOCOL

MerchantManager

public protocol MerchantManager

Interface for accessing and modifying a Merchant and its associated data. All requests are returned in an Result for safe-accessing of the data or the error.

Methods

get(merchantId:)

func get(merchantId: String) async -> Result<Merchant, AnsaApiError>

Retrieves the current Merchant configuration using the ID specified.

  • Parameters:

    • merchantId: The ID of the merchant. You will receive this constant value during onboarding.
  • Returns: The Merchant or an AnsaApiError

Parameters

Name Description
merchantId The ID of the merchant. You will receive this constant value during onboarding.

getBasisTheoryApiKey(merchantId:)

func getBasisTheoryApiKey(merchantId: String) async -> Result<String, AnsaApiError>

getCardArtUrls()

func getCardArtUrls() async -> Result<[String], AnsaApiError>