Verify if a payment initiated via a payment link has been completed. This is useful when a customer has followed a link to pay an invoice and you need to confirm the payment is received and processed.
uuid string required Example UUID for uuid
paymentId string required Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/billing/payment-link/{uuid}/pay curl -X GET "https://cloud.hostup.se/api/billing/payment-link/bca6acff-ac38-4f33-aef7-3a98a82dcbea/pay?paymentId=string" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"status": "string",
"paymentReference": "string",
"datePaid": "string",
"errorCode": "string",
"errorMessage": "string"
}
}