curl --request GET \
--url https://app.flowglad.com/api/v1/invoice-line-items \
--header 'Authorization: <api-key>'
{
"data": [
{
"id": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"createdByCommit": "<string>",
"updatedByCommit": "<string>",
"livemode": true,
"invoiceId": "<string>",
"quantity": "<any>",
"priceId": "<string>",
"description": "<string>",
"price": -1,
"type": "<string>"
}
],
"currentCursor": "<string>",
"nextCursor": "<string>",
"hasMore": true,
"total": 123
}
curl --request GET \
--url https://app.flowglad.com/api/v1/invoice-line-items \
--header 'Authorization: <api-key>'
{
"data": [
{
"id": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"createdByCommit": "<string>",
"updatedByCommit": "<string>",
"livemode": true,
"invoiceId": "<string>",
"quantity": "<any>",
"priceId": "<string>",
"description": "<string>",
"price": -1,
"type": "<string>"
}
],
"currentCursor": "<string>",
"nextCursor": "<string>",
"hasMore": true,
"total": 123
}
Was this page helpful?