Skip to main content

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-8050b5eb84ba
receipts object[]

List of receipt files uploaded by the payer

  • Array [
  • iduuid

    Unique identifier for the receipt

    Example: 550e8400-e29b-41d4-a716-446655440001
    fileNamestring

    Original file name uploaded by the payer

    Example: bank-transfer-screenshot.pdf
    contentTypestring

    MIME content type

    Example: application/pdf
    fileSizeint64

    File size in bytes

    Example: 245760
    uploadedAtdate-time

    Timestamp when the payer uploaded the receipt

    Example: 2025-11-06T10:30:00Z
    downloadUrlstring

    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: 2
    PaymentReceiptList
    {
    "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
    }