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()
Link to this type

create_connector_params()

View Source
@type create_connector_params() :: map()
Link to this type

create_connector_response()

View Source
@type create_connector_response() :: Hyperswitch.Client.response()
Link to this type

delete_connector_response()

View Source
@type delete_connector_response() :: Hyperswitch.Client.response()
Link to this type

get_connector_response()

View Source
@type get_connector_response() :: Hyperswitch.Client.response()
Link to this type

list_connectors_response()

View Source
@type list_connectors_response() :: Hyperswitch.Client.response()
Link to this type

update_connector_params()

View Source
@type update_connector_params() :: map()
Link to this type

update_connector_response()

View Source
@type update_connector_response() :: Hyperswitch.Client.response()

Link to this section Functions

Link to this function

create_connector(account_id, body)

View Source

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.

Link to this function

delete_connector(account_id, connector_id)

View Source
@spec delete_connector(account_id(), connector_id()) :: delete_connector_response()

Delete or Detach a Payment Connector from Merchant Account

Link to this function

get_connector(account_id, connector_id)

View Source
@spec get_connector(account_id(), connector_id()) :: get_connector_response()

Retrieve Payment Connector Details.

Link to this function

list_connectors(account_id)

View Source
@spec list_connectors(account_id()) :: list_connectors_response()

List Payment Connector Details for the merchant.

Link to this function

update_connector(account_id, connector_id, body)

View Source

To update an existing Payment Connector. Helpful in enabling / disabling different payment methods and other settings for the connector etc.