---
title: "GET paginated invoice items"
method: GET
path: "/v1/invoices/{invoiceUuid}/items"
tags: ["Invoices"]
---

# GET paginated invoice items

`GET /v1/invoices/{invoiceUuid}/items`

Access pages of invoice items.

## Path parameters

- `invoiceUuid` string, uuid, required

## Query parameters

- `limit` integer
- `pageNumber` integer
- `sortBy` 'uuid' | 'transactionTime' | 'quantity' | 'net' | 'gross' | 'vatPercentage'
- `reverse` boolean

## Response `200`

Successful operation.

- ApiPageInvoiceItemDto
  - `items` InvoiceItemDto[]
    - `uuid` string, uuid
    - `itemType` string — Pick the expected item type to display the respective attributes (This field is only used for ui documentation purpose).
    - `transactionTime` string, date-time
    - `description` string
    - `costType` string
    - `costGroup` string
    - `productDescription` string
    - `vehicleUuid` string, uuid — The vehicle this invoice item relates to. Set when the item is booked directly on a vehicle or on a damage of a vehicle.
    - `driverUuid` string, uuid
    - `quantity` number
    - `quantityUnit` 'LITER' | 'US_GALLON' | 'UK_GALLON' | 'PCE' | 'KG' | 'HOUR' | 'LABOR_VALUE' | 'KWH' — The units the quantity of this item is given in. "PCE" is pieces and so is the raw quantity of items. "LABOUR_VALUE" is for any labour costs. "KWH" is kilowatt-hours.
    - `vatPercentage` number
    - `net` number
    - `gross` number
    - `currency` string — ISO 4217 alphabetic currency code
    - `invoiceType` 'FUEL' | 'OTHER'
  - `page` ApiPageInformation
    - `pageNumber` integer
    - `limit` integer
  - `totalItems` integer

## Other responses

- `400` — Bad request - information on the invalid fields will be provided in the response body

---

[API](https://skmtc.net/avrios/apis/fleet-api-specifications.md) · [All operations](https://skmtc.net/avrios/apis/fleet-api-specifications/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/avrios/fleet-api-specifications/revisions/78fc4b609513/schema)
