New API version v7.7.0 has been released! 🎉
REST Documentation
List Invoice Items

Get All Invoice Items

You can use this endpoint to retrieve a paginated list of all invoice items.

Request

GET /api/v1/invoice-items
curl --request GET \
     --url 'https://www.zep-online.de/zepinstanz/next/api/v1/invoice-items' \
     --header 'Accept: application/json' \
     --header 'Authorization: Bearer {token}'

Response

{
	"data": [
        {
            "id": 1,
            "invoice_id": 101,
            "description": "Software Development Services",
            "quantity": 40,
            "unit_price": 85.00,
            "total_price": 3400.00,
            "tax_rate": 19.0,
            "tax_amount": 646.00,
            "net_amount": 3400.00,
            "gross_amount": 4046.00,
            "created": "2024-01-15T10:30:00.000000Z",
            "modified": "2024-01-15T10:30:00.000000Z"
        },
        {
            "id": 2,
            "invoice_id": 102,
            "description": "Consulting Services",
            "quantity": 20,
            "unit_price": 120.00,
            "total_price": 2400.00,
            "tax_rate": 19.0,
            "tax_amount": 456.00,
            "net_amount": 2400.00,
            "gross_amount": 2856.00,
            "created": "2024-02-01T14:20:00.000000Z",
            "modified": "2024-02-01T14:20:00.000000Z"
        }
	]
}

Optional Parameters

  • Name
    limit
    Type
    integer
    Description

    Attribute for limiting the number of entries per page.

  • Name
    invoice_id
    Type
    integer
    Description

    Filter by invoice ID.