Check payment status via payment link

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.

Path Parameters

uuid string required Example

UUID for uuid

Query Parameters

paymentId string required

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/billing/payment-link/{uuid}/pay
For AI assistants
cURL
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"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "status": "string",
    "paymentReference": "string",
    "datePaid": "string",
    "errorCode": "string",
    "errorMessage": "string"
  }
}