GET
/
invoices
/
items
curl --request GET \
  --url https://app.levanta.io/api/creator/v1/invoices/items \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "brand": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      },
      "month": 123,
      "year": 123,
      "sales": 123,
      "commission": 123,
      "cpcCommission": 123,
      "status": "pending",
      "currency": "USD",
      "marketplace": "amazon.com"
    }
  ],
  "cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
number
default:25

The maximum number of items to return

Required range: 1 <= x <= 100
cursor
string

The cursor returned from the last request, if omitted the first page will be returned

Maximum length: 512
brand_ids
string

Comma-delimited list of strings representing an array. Example: 1,2,3 equivalent to [1,2,3]

month
number | null
Required range: 0 <= x <= 11
year
number
required
Required range: 2023 <= x <= 2030
marketplace
enum<string>
default:amazon.com

Represents an Amazon marketplace. If "all" is specified then the scope is all marketplaces.

Available options:
all,
amazon.com,
amazon.co.uk,
amazon.ca,
amazon.de,
amazon.fr

Response

200
application/json
Success
items
object[]
required
cursor
string | null
required

The cursor to use for the next request, if empty there are no more items to return