View Source Hyperswitch.Accounts.Connectors (hyperswitch v0.1.0)
Link to this section Summary
Functions
Create a new Payment Connector for the merchant account. The connector could be a payment processor / facilitator / acquirer or specialized services like Fraud / Accounting etc.
Delete or Detach a Payment Connector from Merchant Account
Retrieve Payment Connector Details.
List Payment Connector Details for the merchant.
To update an existing Payment Connector. Helpful in enabling / disabling different payment methods and other settings for the connector etc.
Link to this section Types
@type account_id() :: Hyperswitch.Accounts.account_id()
@type connector_id() :: binary()
@type create_connector_params() :: map()
@type create_connector_response() :: Hyperswitch.Client.response()
@type delete_connector_response() :: Hyperswitch.Client.response()
@type get_connector_response() :: Hyperswitch.Client.response()
@type list_connectors_response() :: Hyperswitch.Client.response()
@type update_connector_params() :: map()
@type update_connector_response() :: Hyperswitch.Client.response()
Link to this section Functions
@spec create_connector(account_id(), create_connector_params()) :: create_connector_response()
Create a new Payment Connector for the merchant account. The connector could be a payment processor / facilitator / acquirer or specialized services like Fraud / Accounting etc.
@spec delete_connector(account_id(), connector_id()) :: delete_connector_response()
Delete or Detach a Payment Connector from Merchant Account
@spec get_connector(account_id(), connector_id()) :: get_connector_response()
Retrieve Payment Connector Details.
@spec list_connectors(account_id()) :: list_connectors_response()
List Payment Connector Details for the merchant.
@spec update_connector(account_id(), connector_id(), update_connector_params()) :: update_connector_response()
To update an existing Payment Connector. Helpful in enabling / disabling different payment methods and other settings for the connector etc.