Skip to main content
GET
/
orgs
/
{orgId}
/
billing
/
invoices
Returns all invoices from Stripe for the organization
curl --request GET \
  --url https://api.zippendo.com/orgs/{orgId}/billing/invoices \
  --header 'Authorization: Bearer <token>'
{
  "invoices": [
    {
      "id": "<string>",
      "number": "<string>",
      "date": "<string>",
      "amount": 123,
      "currency": "<string>",
      "status": "<string>",
      "pdfUrl": "<string>",
      "hostedUrl": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT access token or API token (prefixed with zipp_)

Path Parameters

orgId
string
required

Organization ID

Response

Default Response

invoices
object[]
required