Payments
Use ClubCollect as your payment provider
Last updated
Use ClubCollect as your payment provider
Last updated
GET
https://app.clubcollect.com/api/v2/payments/:payment:method
This endpoint allows to start a new payment and redirects the user to the payment page.To start the payment session, the partner needs to generate the payment URL with the required parameters and add a signature to avoid tampering with data. Payments will always be linked to an invoice in ClubCollect. The invoice will be created ad hoc from the parameters received in the request, unless the partner provides the invoice_id
of an existing invoice to be paid. When the invoice_id
is given, the payment will be generated for the total amount due for the invoice. An invoice can have many associated payments and each call to the payments endpoint will result in a new payment. The invoices that are generated ad hoc are grouped in batches, per month.These batches can be found on :https://app.clubcollect.com/treasurer/import_batches
,named iDEAL (<year>-<month>)
by default, e.g. iDEAL (2019-08)
.
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
To ensure authenticity and data integrity of incoming payment requests ClubCollect requires these requests to be signed. This signature is based on a Hash-based Message Authentication Code (HMAC) calculated using a request's key-value pairs and a secret key, which is known only to the partner and ClubCollect.
Before sending a payment request to ClubCollect, the partner has to calculate the signature and add it as a request parameter. When a request comes in, ClubCollect calculates the same signature based on the received key-value pairs and the secret key. By verifying that both signatures are equal, ClubCollect ensures that the request is not tampered.
Similarly, the partner can validate responses from ClubCollect by calculating the corresponding signature and comparing it with the signature in the response.
Let's explain now how to calculate the signature step by step using the key-value pairs in the table below as example.
Note that code snippets are provided in Ruby.
partner API key: 3ac2bf2359c1eb184fe0fea01f624bc1d8581981
Discard key-value pairs for which value is null or an empty string
Sort the key-value pairs by key.
Concatenate every key-value pair on the list obtained in the previous step to get the signing string
Calculate SHA256 digest of the signing string
Calculate HMAC SHA-256 signature of digested signing string using the API key.
Encode the result from binary to hexadecimal
The signature calculated for the example key-value pairs and API key is:
After the signature is generated, it has to be appended to the url query string as
Once the users finish the payment process, they are redirected to a result page of your choice, included in the payment request as redirect_url
.
ClubCollect will append parameters to this URL. payment_result
will inform the partner about the payment status. If the status is already determined (either authorised
or refused
or cancelled
), this information can be used to display a payment successful or payment failed or payment cancelled page.
In a case when the current status is pending
, the outcome of the payment will be communicated with payment notifications. Payments with status cancelled
may be authorized later by the payment provider.
The partner is encouraged to store the invoice_id
and payment_id
returned in ClubCollect responses and payment notifications, they will be needed to track the status of the payments. As an alternative, the partner can provide a unique external_invoice_number
parameter in the payment request and ClubCollect will include it on the response and notifications.
The payment_result
can have one of these values:
authorized
- the payment was successfully processed and accepted by the payment provider
refused
- the payment could not be processed due to invalid data introduced by the user
cancelled
- the payee cancelled the payment or the payment session was ended by the payment provider due to inactivity of the payee.
pending
- the payment is submitted for processing but the payment provider hasn't sent yet the result
error
- the request was invalid or there was a general error on provider side (payment state is unknown)
For some online payment methods such as iDEAL, the outcome of the payment request might take several hours to confirm. As soon as ClubCollect receives any update from the payment provider, a payment notification will be sent to the partner to communicate any change in the payment status.
Notifications are sent as HTTPS callbacks (webhooks) to an endpoint on your server. To receive notifications, you need a server that has:
An endpoint that can accept a JSON payload in an HTTP POST request.
An open TCP port for HTTPS traffic
This endpoint should be communicated to ClubCollect before going live with the payment integration.
The format of the JSON payload sent in the notifications is as follows:
GET
https://app.clubcollect.com/api/v2/payments/:id
ClubCollect will inform about any changes in the status using payment notifications. This endpoint can be used as a "backup" by the partner to check the current status of a payment in case any notification is dismissed. If at creation time you have provided a custom payment_id then you should use that identifier in this request.
GET
https://app.clubcollect.com/api/v2/payments/notifications
Returns a list containing the status of payments for a company, sorted from newest to oldest payments. It can be used by partners to catch up with notifications that might have been dismissed or not processed correctly.
key | value |
---|---|
key | value |
---|---|
key | value |
---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
payment:method*
string
Payment Method (allowed: ideal, bancontact, credit_card, paypal, sofort)
company:id*
string
Unique identifier of the company receiver of the payment.
redirect:url*
string
When payee completes or canceles the payment process, the request will be redirected to this URL. ClubCollect will append some additional parameters to the request which will allow the partner to know the current state of the payment. See below in the response section.
signature*
string
Request signature
invoice:id
string
ID of an invoice that has been already generated by the partner for the payee. In case it's provided, the payment generated will be for the total amount due for the given invoice. This can be used by the partner when the payee starts the payment process and the payment is left incomplete or it's cancelled. In case invoice_id is given, amount_cents, last_name and the rest of parameters below will be ignored. These are used only to generate a new invoice.
last:name*
string
Last name of the payee. Required unless invoice_id is provided.
amount:cents*
integer
Amount in cents that is going to be paid. Required unless invoice_id is provided. Can't be smaller than 100
.
payment:id
string
Payment identifier, will be used further to reference this Payment. If not provided ClubCollect will generate an identifier (a hexadecimal string of at least 40 chars). This values must be unique and have between 10 and 50 chars so we advise you to provide an UUID like value. If ClubCollect determines that the value is not unique an error will be returned.
payment:reference
string
Reference of the payment, will be used as description of the invoice line.
first:name
string
First name of the payee.
external:invoice:number
string
Unique invoice number provided by the partner.
locale
string
Language that will be used in the payment process. If not given, the company default locale will be used.
prefix
string
Prefix of the name of the payee.
infix
string
Prefix of the name of the payee.
country:code
string
Payee country, as defined by ISO 3166-1 alpha-2 standard.
address1
string
Payee street name
address2
string
Payee additional street name
house:number
string
Payee address number
zipcode
string
Payee ZIP code. If it's given, it must be less than 16 characters.
city
string
Payee city. If it's given, it must be less than 35 characters.
email:address
string
Payee email address.
phone:number
string
Payee phone number. It is expected that partner provides the phone number in E.164 format, i.e. including international prefix (e.g. +31)
first_name
John
redirect_url
http://partner-test.nl
country_code
NL
external_invoice_number
123456
amount_cents
1000
last_name
Doe
locale
company_id
d4b8772c67154a6bced8a8b827e177cc00111fe0
payment_reference
Club membership 2019/2
first_name
John
redirect_url
http://partner-test.nl
country_code
NL
external_invoice_number
123456
amount_cents
1000
last_name
Doe
company_id
d4b8772c67154a6bced8a8b827e177cc00111fe0
payment_reference
Club membership 2019/
amount_cents
1000
company_id
d4b8772c67154a6bced8a8b827e177cc00111fe0
country_code
NL
external_invoice_number
123456
first_name
John
last_name
Doe
payment_reference
Club membership 2019/2
redirect_url
http://partner-test.nl
id*
string
Unique payment identifier returned by ClubCollect in the payment response.
company:id*
string
Unique identifier of the company receiver of the payment.
signature*
string
Should include `id` and `company_id`
company:id*
string
Unique identifier of the company.
signature*
string
Should include `company_id` and `page`.
page
string
Page number. If it's not given, default to 1
. There are 25 payments per page.