PaymentReceiptList
List of receipts uploaded by payers for a specific payment. Currently supports bank transfer receipts (e.g., screenshots, confirmations).
paymentIduuid
Payment ID
Example:
b0ae5614-2494-49fa-b075-8050b5eb84bareceipts object[]
List of receipt files uploaded by the payer
Array [
iduuid
Unique identifier for the receipt
Example:
550e8400-e29b-41d4-a716-446655440001fileNamestring
Original file name uploaded by the payer
Example:
bank-transfer-screenshot.pdfcontentTypestring
MIME content type
Example:
application/pdffileSizeint64
File size in bytes
Example:
245760uploadedAtdate-time
Timestamp when the payer uploaded the receipt
Example:
2025-11-06T10:30:00ZdownloadUrlstring
Download URL for the receipt file
Example:
https://api.hubpay.ae/v1/collections/payment-requests/payments/b0ae5614-2494-49fa-b075-8050b5eb84ba/receipts/550e8400-e29b-41d4-a716-446655440001/download]
totalCountint32
Total number of receipts
Example:
2PaymentReceiptList
{
"paymentId": "b0ae5614-2494-49fa-b075-8050b5eb84ba",
"receipts": [
{
"id": "550e8400-e29b-41d4-a716-446655440001",
"fileName": "bank-transfer-screenshot.pdf",
"contentType": "application/pdf",
"fileSize": 245760,
"uploadedAt": "2025-11-06T10:30:00Z",
"downloadUrl": "https://api.hubpay.ae/v1/collections/payment-requests/payments/b0ae5614-2494-49fa-b075-8050b5eb84ba/receipts/550e8400-e29b-41d4-a716-446655440001/download"
}
],
"totalCount": 2
}