Get a list of invoice items for a given month and year.

Method: GET (paginated)

Parameters:

Response:

{
  "items": [
    {
      "brand": {
        "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "name": "string"
      },
      "month": 0,
      "year": 0,
      "sales": 0,
      "commission": 0,
      "status": "pending",
      "currency": "USD",
      "marketplace": "amazon.com"
    }
  ],
  "cursor": "string"
}

Errors:

Example:

const API_KEY = "LEVANTA_API_KEY";
const ENDPOINT = "<https://app.levanta.io/api/creator/v1/invoices/items>";

let cursor;
const reports = [];

// Set up query parameters
const parameters = new URLSearchParams();
// Get 50 items per response
parameters.set("limit", 50);
// Get invoice from January 2024
parameters.set("year", 2024);
parameters.set("month", 0);

// Paginate through reports, stop when a value of null is returned for "cursor"
while (cursor !== null) {
    const response = await fetch(`${ENDPOINT}?${parameters.toString()}`, {
			method: "GET",
			headers: {
				Authorization: `Bearer ${API_KEY}`
			}
		});
	  const json = await response.json();
		// Store reports returned
	  reports.push(...json.reports);
    cursor = json.cursor;
    if (cursor) parameters.set("cursor", cursor);
}
console.log(reports);