GET
/
v1
/
payment
/
stripe
/
invoices
Get a list of invoices for a customer
curl --request GET \
  --url https://api.projectdiscovery.io/v1/payment/stripe/invoices \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "invoice_number": "<string>",
      "amount": 123,
      "paid_on": "2023-11-07T05:31:56Z",
      "status": "<string>",
      "invoice_url": "<string>"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Response

200
application/json

OK

The response is of type object.