Skip to main content
GET
/
billing
/
payment-requests
Get Pending Payment Requests
curl --request GET \
  --url https://api.bunny.net/billing/payment-requests \
  --header 'AccessKey: <api-key>'
[
  {
    "Id": 123,
    "Amount": 123,
    "DateGenerated": "2023-11-07T05:31:56Z",
    "DateDue": "2023-11-07T05:31:56Z",
    "Description": "<string>",
    "Paid": true,
    "DatePaid": "2023-11-07T05:31:56Z",
    "BillingInvoiceId": 123,
    "BillingInvoiceDownloadLink": "<string>",
    "BankTransferReference": "<string>",
    "TaxRate": 123,
    "TaxedAmount": 123
  }
]

Authorizations

AccessKey
string
header
required

API Access Key authorization header

Response

A list of pending payment requests or A list of pending payment requests

Id
integer<int64>
Amount
number<decimal>
DateGenerated
string<date-time>
DateDue
string<date-time>
Description
string | null
Paid
boolean
DatePaid
string<date-time> | null
BillingInvoiceId
integer<int64> | null
BankTransferReference
string | null
TaxRate
number<decimal>
TaxedAmount
number<decimal>