Skip to main content
GET
/
v3
/
orders
/
utm-terms
List order UTM terms
curl --request GET \
  --url https://api.myscalev.com/v3/orders/utm-terms \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    "running_shoes",
    "winter_jacket",
    "laptop",
    "smartphone"
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

Search term to filter UTM terms

Response

Unique UTM terms list

data
string[]
Example:
[
"running_shoes",
"winter_jacket",
"laptop",
"smartphone"
]