Swiss CH-DD

The Swiss Payments extensions includes CH-DD and ESR payment methods, along with support for reconciling bank file standards used in Switzerland.

FinDock supports collecting CH-DD direct debit payments via PostFinance. For reconciliation, FinDock can process both Customer Direct Debit Initiation (pain.008) and the Customer Payment Status Report (pain.002) files. In addition, FinDock supports the Bank-to-Customer Statement (camt.053) Bank-to-Customer Debit/Credit Notification (camt.054) statements.

Prerequisites

  • FinDock is installed and configured.

  • You have at least one Swiss bank account.

Install Swiss Payments extension

Follow the standard procedure for installing payment processors to add the Swiss Payments for PaymentHub extension. Activate the PaymentHub-CH-DD processor and Direct Debit payment method.

Check and assign the required permissions. There are no additional package-specific permission sets for Swiss Payments.

ย ย ย The Swiss Payments package is not pushable, so we cannot automatically update your org with the normal release process. If a release includes an update for the Swiss Payments package, please install the latest version using the FinDock Installer.

Add CH-DD targets

A target in FinDock determines through which bank a transaction is routed for collection, In addition, FinDock uses targets to process bank statements and reconcile payments.

To add a new CH-DD target:

  1. Launch the FinDock app and click the FinDock Setup tab.
  2. Go to Payment Processors & Methods.
  3. Under Installed Processors, click the CH-DD processor entry.
  4. Click Add account.
  5. Add a name for the new target and select Target PaymentHub CH-DD.
  6. Complete the settings according to your needs following the guidance below.
  7. Click Save.

Swiss CH-DD target settings

SettingDescription
Associate charges toSome banks include charges within transactions, especially with direct debit reversals. These charges are stored automatically and matched against a particular account in Salesforce. Either select or create a relevant Salesforce account record to store these charges. Enter the Salesforce Id of the account you selected. You can find the Salesforce Id from your browser navigation bar after https://.../Account/<Id>.
Bank account additionThis is the BIC of the bank handling the transactions for this target.
Bank account numberThis is IBAN for your target.
CAMT message typeFor each target, you need to define whether it will be used for importing camt.053 or camt.054 files. Currently it is not possible to process both types for the same target.
Company nameThis is the creditor name that appears on the bank statement of the payer (debtor).
Payslip optionDefine here whether you want ESR payslips to be attached in the original format as a PNG file or both.
Creditor IDThis is the Creditor ID provided by your bank when you made the direct debit contract.
CAMT duplication protectionPrevent duplicate files from processing (yes/no)
ESR - Participant NumberEnter here the 9-digit participant number of the creditor bank.
GroupHeader - Initiating Party - OrgIdEnter here the unique 17-digit numeric value sender Id agreed with the creditor bank.
Maximum records per sequence typeYour bank may impose limits on the maximum number of records per sequence type. These are usually included in the contract with your bank. If such a limit exists, enter the value here. Otherwise, leave as is.
Maximum records per fileYour bank may impose limits such as the maximum number of transactions per pain file. These are usually included in the contract with your bank. If such a limit exists, enter the value here. Otherwise, leave as is.

CH-DD mandates

A mandate is an agreement between the creditor and the debtor whereby the debtor allows the creditor to take money out of the debtor's bank account. You must have an authorized mandate from the debtor (your customer or donor) to be able to collect CH-DD direct debit payments. There are several rules governing the use of mandates, including expiration, white listing, blacklisting, constellations, and so forth.

Within FinDock, a mandate is a unique ID representing the agreement whereby you, the creditor, have the right to debit a specific bank account. Please keep in mind that this is the technical representation of a mandate. The direct debit rules remain for organizations to have a valid mandate with the payer.

For more information about mandate handling and configuration, please see Introduction to mandate handling.

ESR payment references

If you activate the ESR payment method for the CH-DD processor, you can use the Payment Request Generator to generate ESRs for campaigns, for example. For further information, see What is the Payment Request Generator?

In the Swiss market, it is also possible to receive camt files from PostFinance (the financial services unit of Swiss Post) with images of ESR (Einzahlungsschein mit Referenznummer) Payment Slips attached to the bank statement report. The collection of files is delivered as a zip file. These zip files can be uploaded to FinDock, and FinDock creates the transaction set and transactions similar to a regular camt file upload.

The images (TIFF format) are added as attachments to the corresponding transactions. However, Salesforce doesnโ€™t support previewing TIFF files. On the target level you can change the file format to PNG to preview the file in Salesforce. A very common use case for this is previewing the file during the guided review process to match the transaction to a donation.

The payment reference is primarily used in matching incoming transactions to a particular installment. When performing a direct debit run, the payment reference is used as the End-to-End Id in the PAIN file.

Payment API

To test your Swiss Payments configuration, you can use the following request in combination with the API.

The following message initiates a one-time Direct Debit with FinDock, passing in Target, holderName, IBAN and Description parameters to set up the Mandate.

{
	"SuccessURL": "https://www.example.com/success",
	"FailureURL": "https://www.example.com/error",
	"WebhookURL": "https://webhook.site/181568ec-8830-4672-af01-8c99da8e044f",
	"Payer": {
		"Contact": {
			"SalesforceFields": {
				"FirstName": "Eric",
				"LastName": "Johnson",
				"Email": "eric@johnson.com"
			}
		}
	},
	"OneTime": {
		"Amount": "30"
	},
	"PaymentMethod": {
		"Name": "Direct Debit",
		"Processor": "PaymentHub-CH-DD",
		"Target": "CH-DD-Target",
		"Parameters": {
			"IBAN": "CH9189144468973612788",
            "holderName": "E. Johnson",
            "description": "Room for description"
		}
	},
	"Settings": {
		"SourceConnector": "PaymentHub"
	}
}

The following message initiates a recurring direct debit transaction with FinDock, passing in Target, holderName, IBAN and Description parameters to set up the Mandate.

{
	"SuccessURL": "https://www.example.com/success",
	"FailureURL": "https://www.example.com/error",
	"Payer": {
		"Contact": {
			"SalesforceFields": {
				"FirstName": "Eric",
				"LastName": "Johnson",
				"Email": "eric@johnson.com"
			}
		}
	},

	"Recurring": {
		"Amount": "25",
		"Frequency": "Monthly",
		"StartDate": "2020-11-01"
	},
	"PaymentMethod": {
		"Name": "Direct Debit",
		"Processor": "PaymentHub-CH-DD",
		"Target": "CH-DD-Target",
		"Parameters": {
			"IBAN": "CH9189144468973612788",
            "holderName": "E. Johnson",
            "description": "Room for description"
		}
	},
	"Settings": {
		"SourceConnector": "PaymentHub"
	}
}

Was this page helpful?