Payment Links
Confirm payment link and create payment request (public endpoint). Uses secure token for lookup.
Confirm payment link and create payment request (public endpoint). Uses secure token for lookup.
post/api/v1/payment-links/{token}/confirm
Path parameters
tokenstring required
The secure token from the payment link URL (64-char hex)
Example:a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2
The secure token from the payment link URL (64-char hex)
Request body
Example request
{
"customer": {
"name": "John Doe",
"email": "john@example.com",
"phone": "+351960123456",
"country": "GB"
}
}Response
Success
Example response
{
"success": true,
"data": {
"payment_token": "ptok_550e8400-e29b-41d4-a716-446655440000",
"expires_in": 900
}
}Changes
Changed in 2 of the 8 revisions of this API.11
- ○
endpoint added
endpoint-added
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○
- ▲
api path removed without deprecation
api-path-removed-without-deprecation
This revision also has 367 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲