PayBright has been acquired by Affirm. Adyen will not accept new PayBright integrations.
This page explains how to add PayBright to your existing iOS Drop-in integration.
Requirements
Select the server-side flow that your integration uses:
Requirement | Description |
---|---|
Integration type | Make sure that you have built a Sessions flow iOS Drop-in integration. |
Setup steps | Before you begin, add PayBright in your Customer Area. |
API reference
Select which endpoint you are using:
This is the default with Drop-in v5.0.0 or later.
Parameter name | Required | Description |
---|---|---|
shopperName | Shopper's first name and last name. | |
dateOfBirth | The shopper's date of birth. | |
shopperEmail | The shopper's email address. | |
telephoneNumber | The shopper's phone number. | |
countryCode | The shopper's country. For example, CA . |
|
billingAddress | The address where to send the invoice. | |
shopperReference | A unique reference to identify the shopper (minimum length three characters). | |
deliveryAddress | The address where the purchased goods should be delivered. If blank or missing, billingAddress is used by default. |
|
shopperLocale | A combination of language code and country code to define which language should be used in the PayBright checkout page. | |
lineItems | Price and product information about the purchased items. This is optional, but we recommend to include this data to improve approval rates. |
curl https://checkout-test.adyen.com/v69/sessions \ -H 'x-api-key: ADYEN_API_KEY' \ -H 'content-type: application/json' \ -d '{ "merchantAccount":"YOUR_MERCHANT_ACCOUNT", "countryCode":"CA", "amount":{ "currency":"", "value":6000 }, "shopperLocale":"", "shopperReference":"YOUR_UNIQUE_SHOPPER_ID", "reference":"YOUR_ORDER_NUMBER", "shopperName":{ "firstName":"", "lastName":"" }, "dateOfBirth":"", "telephoneNumber":"", "shopperEmail":"", "billingAddressstate.data.billingAddress from onSubmit":{ "city":"", "country":"CA", "houseNumberOrName":"", "postalCode":"", "stateOrProvince":"", "street":"" }, "deliveryAddressstate.data.deliveryAddress from onSubmit":{ "city":"", "country":"CA", "houseNumberOrName":"", "postalCode":"", "stateOrProvince":"", "street":"" }, "returnUrl":"my-app://adyen", "lineItems":[ { "description":"Shoes", "quantity":"1", "amountIncludingTax":"4000", "amountExcludingTax":"3310", "taxCategory":"Low" }, { "description":"Socks", "quantity":"2", "amountIncludingTax":"3000", "amountExcludingTax":"2480", "taxCategory":"Low" }, { "description":"Discount", "amountExcludingTax":"-1000", "amountIncludingTax":"-1000", "quantity":"1", "taxCategory":"Low" } ] }'
Drop-in configuration
There is no required PayBright-specific integration for Drop-in.
Capture the payment
By default, all PayBright payments are captured automatically after authorisation.
If you prefer to capture the payment after the goods have been sent, or when you want to partially capture payments, you need to set up a capture delay or use manual capture.
When you capture the payment, the shopper is charged for the first installment.
Partial captures
Partial captures are not available if you enabled automatic capture in your Customer Area.
To partially capture a PayBright payment, specify in your /capture request:
modificationAmount
: The amount that the shopper should pay.additionalData.openinvoicedata
:Price and product information for the items that the shopper should pay for.Optional
Although the field names are different, the information in additionalData.openinvoicedata
is the same as what you provided in lineItems
when making a /payments request:
openinvoicedata | lineItems | Description |
---|---|---|
itemAmount |
amountExcludingTax |
The price for one item, without the tax, in minor units. |
itemVatAmount |
taxAmount |
The tax amount for one item, in minor units. |
The following example shows how to make a partial capture request if the shopper only kept one pair of socks from the two included in the original payment request.
{ "originalReference":"COPY_PSP_REFERENCE_FROM_AUTHORISE_RESPONSE", "merchantAccount":"YOUR_MERCHANT_ACCOUNT", "modificationAmount":{ "currency":"", "value":"4500" }, "additionalData":{ "openinvoicedata.numberOfLines":"2", "openinvoicedata.line1.currencyCode":"", "openinvoicedata.line1.description":"Shoes", "openinvoicedata.line1.itemAmount":"3310", "openinvoicedata.line1.itemVatAmount":"690", "openinvoicedata.line1.numberOfItems":"1", "openinvoicedata.line2.currencyCode":"", "openinvoicedata.line2.description":"Socks", "openinvoicedata.line2.itemAmount":"1240", "openinvoicedata.line2.itemVatAmount":"260", "openinvoicedata.line2.numberOfItems":"1", }, "reference":"YOUR_CAPTURE_REFERENCE" }
Any unclaimed amount that is left over after partially capturing a payment is automatically cancelled. When your account is enabled for multiple partial captures, the unclaimed amount after an initial capture is not automatically cancelled.
To set up multiple partial captures, contact our Support Team. Multiple partial captures will create a new invoice for each capture.
Refunds and cancellations
If a payment has not yet been captured, you can cancel it. If the PayBright payment has already been captured and you want to return the funds to the shopper, you need to refund it.
Partial refunds
To partially refund a payment, specify in your /payments/{paymentPspReference}/refunds request:
modificationAmount
: The amount to be refunded to the shopper.additionalData.openinvoicedata
:Price and product information about the returned items.Optional
Providing additionalData.openinvoicedata
is optional, and although the field names are different, the information is the same as what you provided in lineItems
when making a /payments request:
openinvoicedata | lineItems | Description |
---|---|---|
itemAmount |
amountExcludingTax |
The price for one item, without the tax, in minor units. |
itemVatAmount |
taxAmount |
The tax amount for one item, in minor units. |
The following example shows how to make a partial refund request if the shopper returned the shoes included in the original payment request.
{ "merchantAccount":"YOUR_MERCHANT_ACCOUNT", "originalReference":"COPY_PSP_REFERENCE_FROM_AUTHORISE_RESPONSE", "modificationAmount":{ "currency":"", "value":"4000" }, "additionalData":{ "openinvoicedata.numberOfLines":"1", "openinvoicedata.line1.currencyCode":"", "openinvoicedata.line1.description":"Shoes", "openinvoicedata.line1.itemAmount":"3310", "openinvoicedata.line1.itemVatAmount":"690", "openinvoicedata.line1.numberOfItems":"1" }, "reference":"YOUR_REFUND_REFERENCE" }
Test and go live
To test PayBright payments, use the test details provided in the PayBright developer documentation.
You can check the status of test payments in your Customer Area > Transactions > Payments.
Before you can accept live PayBright payments, you need to submit a request for PayBright in your live Customer Area.