GET
/
creator-connections
/
reports
curl --request GET \
  --url https://app.levanta.io/api/seller/v1/creator-connections/reports \
  --header 'Authorization: Bearer <token>'
{
  "reports": [
    {
      "asin": "<string>",
      "date": "2023-11-07T05:31:56Z",
      "marketplace": "amazon.com",
      "clicks": 123,
      "conversions": 123,
      "commission": 123,
      "sales": 123,
      "campaign": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      },
      "brand": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      },
      "creator": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "creatorConnectionsId": "<string>"
      }
    }
  ],
  "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:100

The maximum number of items to return

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

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

Maximum length: 512
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 UUIDs representing an array

campaign_ids
string

Comma-delimited list of UUIDs representing an array

asins
string

Comma-delimited list of ASINs representing an array. Example: B09G9FPHY6,B09G9FPHY7 equivalent to [B09G9FPHY6,B09G9FPHY7]

marketplace
enum<string>
default:amazon.com
Available options:
amazon.com

Response

200
application/json

Success

The response is of type object.