Create payment link
With the Payment links API you can generate payment links that by default, unlike regular payments, do not expire. The payment link can be shared with your customers and will redirect them to them the payment page where they can complete the payment. A payment will only be created once the customer initiates the payment.
Headers
A unique key to ensure idempotent requests. This key should be a UUID v4 string.
Request body
Example request
{
"resource": "payment-link",
"id": "pl_d9fQur83kFdhH8hIhaZfq",
"mode": "live",
"description": "Chess Board",
"amount": {
"currency": "EUR",
"value": "10.00"
},
"minimumAmount": {
"currency": "EUR",
"value": "10.00"
},
"redirectUrl": "https://webshop.example.org/payment-links/redirect/",
"webhookUrl": "https://webshop.example.org/payment-links/webhook/",
"lines": [
{
"type": "physical",
"description": "LEGO 4440 Forest Police Station",
"quantity": 1,
"quantityUnit": "pcs",
"unitPrice": {
"currency": "EUR",
"value": "10.00"
},
"discountAmount": {
"currency": "EUR",
"value": "10.00"
},
"totalAmount": {
"currency": "EUR",
"value": "10.00"
},
"vatRate": "21.00",
"vatAmount": {
"currency": "EUR",
"value": "10.00"
},
"sku": "9780241661628",
"categories": [
"meal",
"eco"
],
"imageUrl": "https://...",
"productUrl": "https://..."
}
],
"billingAddress": {
"title": "Mr.",
"givenName": "Piet",
"familyName": "Mondriaan",
"organizationName": "Mollie B.V.",
"streetAndNumber": "Keizersgracht 126",
"streetAdditional": "Apt. 1",
"postalCode": "1234AB",
"email": "piet@example.org",
"city": "Amsterdam",
"region": "Noord-Holland",
"country": "NL"
},
"shippingAddress": {
"title": "Mr.",
"givenName": "Piet",
"familyName": "Mondriaan",
"organizationName": "Mollie B.V.",
"streetAndNumber": "Keizersgracht 126",
"streetAdditional": "Apt. 1",
"postalCode": "1234AB",
"email": "piet@example.org",
"city": "Amsterdam",
"region": "Noord-Holland",
"country": "NL"
},
"profileId": "pfl_QkEhN94Ba",
"createdAt": "2024-03-20T09:13:37+00:00",
"paidAt": "2025-12-24T11:00:16+00:00",
"expiresAt": "2025-12-24T11:00:16+00:00",
"allowedMethods": [
"ideal"
],
"applicationFee": {
"amount": {
"currency": "EUR",
"value": "10.00"
},
"description": "Platform fee"
},
"sequenceType": "oneoff",
"customerId": "cst_XimFHuaEzd",
"_links": {
"self": {
"href": "https://...",
"type": "application/hal+json"
},
"paymentLink": {
"href": "https://...",
"type": "application/hal+json"
}
}
}Response
The newly created payment link object.
Changes
Changed in 2 of the 78 revisions of this API.4
- ○
added the non-success response with the status
response-non-success-status-added
- ○
- ○
the endpoint scheme security
advancedAccessTokenwas added to the APIapi-security-added
- ○
the endpoint scheme security
organizationAccessTokenwas removed from the APIapi-security-removed
- ○
removed
subschema #2from the response bodyallOflist for the response statusresponse-body-all-of-removed
This revision also has 4 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○
Of the 78 revisions, 9 have no diff computed.