GET
/
api
/
stripe
/
invoices
/
{organization_id}
curl --request GET \
  --url https://api.trieve.ai/api/stripe/invoices/{organization_id} \
  --header 'Authorization: <api-key>'
[
  {
    "created_at": "2023-11-07T05:31:56Z",
    "hosted_invoice_url": "<string>",
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status": "<string>",
    "stripe_id": "<string>",
    "total": 123
  }
]

Authorizations

Authorization
string
header
required

Path Parameters

organization_id
string
required

The id of the organization to get invoices for.

Response

200
application/json
List of all invoices
created_at
string
required
hosted_invoice_url
string
required
id
string
required
org_id
string
required
status
string
required
total
integer
required
stripe_id
string | null