GET
/
reports
/
clicks
curl --request GET \
  --url https://app.levanta.io/api/seller/v1/reports/clicks \
  --header 'Authorization: Bearer <token>'
{
  "reports": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "date": "2023-11-07T05:31:56Z",
      "marketplace": "amazon.com",
      "linkId": "<string>",
      "creatorId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "brandId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "clicks": 123,
      "final": true
    }
  ],
  "cursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

start
string
required

Date in ISO Format without offset (UTC): YYYY-MM-DDTHH:mm:ss.SSSZ

end
string
required

Date in ISO Format without offset (UTC): YYYY-MM-DDTHH:mm:ss.SSSZ

brand_ids
string

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

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
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
payout_model
enum<string>
default:standard

The type of payout the item is associated with - Standard: commissioning based off of a percentage of sales. Cpc: commissions awarded per click

Available options:
standard,
cpc,
all

Response

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

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