GET INVOICES
Query for subscription invoices for the given customer API key
get
https://api.eyelevel.ai/v1/partner
/subscription/invoices/:apiKey
QUERY
{
"invoices": [
{
"amount": INTEGER,
"created": DATETIME,
"currency": "ENUMERATED STRING",
"invoiceId": "STRING IDENTIFIER",
"invoiceUrl": "STRING",
"isPaid": BOOLEAN
}
]
}
The price in cents (represented as a whole integer if possible) of the subscription plan per month or per year.
The datetime in RFC3339 format when the invoice was created.
The unique identifier for the invoice.
The URL where the invoice is hosted.
A boolean that describes whether the invoice has been paid (true) or not (false).
Last modified 1yr ago