Skip to main content
GET
/
v3
/
orders
/
utm-mediums
List order UTM mediums
curl --request GET \
  --url https://api.myscalev.com/v3/orders/utm-mediums \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    "cpc",
    "organic",
    "social",
    "email",
    "referral"
  ]
}

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 mediums

Response

Unique UTM mediums list

data
string[]
Example:
[
"cpc",
"organic",
"social",
"email",
"referral"
]