GET
/
reports
/
conversions
curl --request GET \
  --url https://app.levanta.io/api/creator/v2/preview/reports/conversions \
  --header 'Authorization: Bearer <token>'
{
  "conversions": [
    {
      "date": "2023-11-07T05:31:56Z",
      "subid1": "<string>",
      "subid2": "<string>",
      "clickid": "<string>",
      "quantity": 123,
      "sales": "<string>",
      "commissionAmount": "<string>",
      "product": {
        "ids": [
          {
            "label": "ASIN",
            "value": "<string>"
          }
        ],
        "title": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

subid1
string
subid2
string
clickid
string
start
string

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

end
string

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

marketplace
enum<string>
required

Represents a Levanta marketplace (ex: amazon.co.uk, walmart.com). If "all" is specified then the scope is all marketplaces.

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

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

Maximum length: 512
limit
number
default:100

The maximum number of items to return

Required range: 1 <= x <= 500

Response

200
application/json

Success

The response is of type object.