POST
Payments/payments/{paymentUuid}/confirmConfirm payment
Confirms an initiated payment and accepts optional confirmation metadata.
Access tierauthenticatedRate limitpay_apiIdempotencyheader:Idempotency-KeyAuthenticationBearerAuth
Source
LuxApi/Modules/PayAPI/Controllers/PaymentController.php::confirmLuxPayProjects @ 146e98baa44eParameters
X-Request-IDheaderClient correlation identifier. LuxPay may generate one when omitted.
Example:req_01J...paymentUuidpathPayment UUID.
Example:cf1b7e8e-5bba-4ddb-b2e4-6f4a10d24857Idempotency-KeyheaderUnique key for safely retrying this mutation. Reuse only for the same logical request.
Example:pay_01JABC...Request body
ConfirmPaymentRequestRequired
metadataobject | null
JSON example
{
"metadata": {}
}Code examples
The displayed sandbox host is a placeholder until an official host is provisioned. Never paste a production token into a public browser.
curl --request POST \
--url 'https://sandbox-api.luxpay.example/v1/payments/cf1b7e8e-5bba-4ddb-b2e4-6f4a10d24857/confirm' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Idempotency-Key: pay_01JABC...' \
--header 'Content-Type: application/json' \
--data '{
"metadata": {}
}'Responses
200Successful response.
successboolean
Example:
truedataPaymentResult
{
"success": true,
"data": {
"success": false,
"transaction_id": "string",
"status": "string",
"provider": "string",
"provider_ref": "string",
"amount": 1,
"currency": "string",
"fee_amount": 1,
"net_amount": 1,
"message": "string",
"error_code": "string",
"is_duplicate": false,
"metadata": {}
}
}