curl --request GET \
--url https://api.myscalev.com/v3/orders/utm-campaigns \
--header 'Authorization: Bearer <token>'{
"data": [
"summer_sale",
"black_friday",
"new_product_launch",
"brand_awareness"
]
}Requires the order:list machine scope. Retrieve a list of unique UTM campaign values from orders.
curl --request GET \
--url https://api.myscalev.com/v3/orders/utm-campaigns \
--header 'Authorization: Bearer <token>'{
"data": [
"summer_sale",
"black_friday",
"new_product_launch",
"brand_awareness"
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Search term to filter UTM campaigns
Unique UTM campaigns list
[
"summer_sale",
"black_friday",
"new_product_launch",
"brand_awareness"
]