Invoice Line Items
List all LineItemGroups
List all LineItemGroups
GET
/
invoices
/
{invoice}
/
line-item-groups
Header
Path
Query
curl --request GET \
--url https://eu.sequencehq.com/api/invoices/{invoice}/line-item-groups \
--header 'Authorization: <authorization>'
{
"items": [
{
"description": "Charges for users",
"grossTotal": "101.23",
"id": "4639a112-f821-4bc1-bc2d-6f9ece5b7c0f",
"index": 2,
"invoiceId": "cd11218d-fa00-4faa-8684-a43113d076a8",
"netTotal": "51.20",
"title": "Users",
"totalTax": "2.50"
}
],
"pagination": {
"after": "MDE4NDUyNjYtNmQ2NC03N2M4LTlhZGYtNDQ4N2Q5NGQxNDU3",
"before": "MDE4NDQyMWUtYTljYy03MTFiLWFmOTMtYmYwNTExZDRkODMz",
"totalResultSize": 10
}
}
Headers
Authorizationrequired
string
Your API credentials. Eg. Basic {credentials}
.
Path Parameters
invoicerequired
string
The Invoice ID
Query Parameters
before
string
Pagination cursor. To page through items, omit this parameter to retrieve the first page, and then successively use the value you get from pagination.after
or pagination.before
to retrieve each page.
after
string
Pagination cursor. To page through items, omit this parameter to retrieve the first page, and then successively use the value you get from pagination.after
or pagination.before
to retrieve each page.
limit
integer
Maximum number of objects to return per-page.
sortOrder
string
Sort order. Default: DESC (descending, most often used for reverse chronological sorting).
Response
200 - application/json
itemsrequired
object[]
paginationrequired
object
curl --request GET \
--url https://eu.sequencehq.com/api/invoices/{invoice}/line-item-groups \
--header 'Authorization: <authorization>'
{
"items": [
{
"description": "Charges for users",
"grossTotal": "101.23",
"id": "4639a112-f821-4bc1-bc2d-6f9ece5b7c0f",
"index": 2,
"invoiceId": "cd11218d-fa00-4faa-8684-a43113d076a8",
"netTotal": "51.20",
"title": "Users",
"totalTax": "2.50"
}
],
"pagination": {
"after": "MDE4NDUyNjYtNmQ2NC03N2M4LTlhZGYtNDQ4N2Q5NGQxNDU3",
"before": "MDE4NDQyMWUtYTljYy03MTFiLWFmOTMtYmYwNTExZDRkODMz",
"totalResultSize": 10
}
}