GET
/
creator-connections
/
campaigns
curl --request GET \
  --url https://app.levanta.io/api/seller/v1/creator-connections/campaigns \
  --header 'Authorization: Bearer <token>'
{
  "campaigns": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "startDate": "2023-11-07T05:31:56Z",
      "endDate": "2023-11-07T05:31:56Z",
      "status": "<string>",
      "commissionPercentage": 123,
      "budget": 123,
      "brand": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<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: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
starts_after
string

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

ends_before
string

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

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

Comma-delimited list of UUIDs representing an array

Response

200
application/json

Success

The response is of type object.