External payment gateways
How to manage payments and transactions via external services
Last updated
How to manage payments and transactions via external services
Last updated
Commerce Layer is with some of the most popular payment gateways — Adyen, Axerve, Braintree, Checkout.com, Klarna, Paypal, and Stripe. They are all compliant with the PSD2 European regulation so that you can implement a payment flow that supports SCA and 3DS2.
Adding new payment gateways to our core is already provided for in our roadmap. Anyway, you already have the complete flexibility to connect to whichever payment service provider you may need. To do that, just create an external payment gateway and define your custom endpoint(s) responding to the following actions:
— to authorize a payment source
— to capture an authorization
— to void an authorization
— to refund a capture, either totally or partially
— to create a customer payment token
Your external endpoint will be responsible for the actual integration with the payment gateway. The payment source associated with the order must be an .
The request payload is a compliant object you can query to perform your own computation. Aside from the target resource — which depends on the kind of gateway's transaction — some relationships are also included to avoid useless API roundtrips:
order
order.market
order.line_items
order.line_items.item
order.shipping_address
order.billing_address
order.customer
order.order_subscriptions
When you place an order, Commerce Layer triggers a POST
request to the endpoint that you specified in the authorize_url
field and creates an authorization.
When you try to capture an authorization, Commerce Layer triggers a POST
request to the endpoint that you specified in the capture_url
field and creates a capture.
When you try to void an authorization, Commerce Layer triggers a POST
request to the endpoint that you specified in the void_url
field and creates a void.
When you try to void a capture, Commerce Layer triggers a POST
request to the endpoint that you specified in the refund_url
field and creates a refund.
When you try to store a payment token for a customer, Commerce Layer triggers a POST
request to the endpoint that you specified in the token_url
field and creates a customer payment source for the specified payment.
A payment is marked as asynchronous when the following conditions on the response to any of the external payment gateway transactions are met:
HTTP code is 202
It contains the action_id
key, which uniquely identifies the related transaction
In this case, the external payment gateway creates the transaction setting the succeeded
attribute to false
, but considering it as pending. This way, the order can be placed without errors, but the order payment status doesn't change yet (even if the order is not editable anymore).
To notify the payment has changed its status, the external gateway exposes a webhook_endpoint_url
you can call accordingly once the related payment transaction gets an update, as long as you follow these requirements:
It accepts only POST requests.
The request body must have the same structure as the response — a JSON object with the transaction's attributes you need to update — and include the action_id
previously used.
The external payment gateway will use this data to fetch the pending transaction and update the attributes with the new values. On successful update, the transaction succeeded
attribute is set to true
and the order is updated to the right status — authorized
, paid
, voided
, or refunded
. In case of error, the order status remains as it is.
message
error_code
error_detail
avs_code
avs_message
cvv_code
cvv_message
fraud_review
When you create a new external payment gateway, a shared secret is generated. We recommend verifying the callback authenticity by signing the payload with that shared secret and comparing the result with the callback signature header.
In case the call to your external endpoint goes timeout, responds with an internal server error or is blocked by the open , the API keeps responding with a 200 OK
status code. A failed transaction (of the specific type) is created by using the related response error message and the circuit breaker internal counter (if closed) is incremented.
The request payload contains the external payment resource and includes the relationships:
If you specify the messages
key a with the related information is automatically attached to the associated order.
The request payload contains the authorization resource and includes the relationships:
If you specify the messages
key a with the related information is automatically attached to the associated order.
The request payload contains the authorization resource and includes the relationships:
If you specify the messages
key a with the related information is automatically attached to the associated order.
The request payload contains the capture resource and includes the relationships:
If you specify the messages
key a with the related information is automatically attached to the associated order.
The request payload contains the payment source resource and includes the relationships:
It might be the case you don't want your gateway to process payments immediately. That's why Commerce Layer provides the option to your external gateway response as asynchronous and a webhook_endpoint_url
you can call once the payment status changes.
action_id
uniqueness is mandatory for the to detect the transaction later.
The payload requested by the related transaction, as explained in the , , , and sections.
You must include an X-CommerceLayer-Signature header, which contains the of the request payload signed with a SHA256 algorithm and the same already exposed by the external payment gateway.
Only a subset of attributes is allowed for an update, assuming the main ones have already been set by (e.g. amount_cents
and transaction_token
cannot be updated). The updatable transaction fields are: