Website
My own Cloudflare account
fetch('https://api-sandbox.edgetag.io/tag', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer your-token',
'Team-Id': '{your-team-id}'
},
body: JSON.stringify({
name: 'Domain',
rootDomain: 'domain.com',
debug: false,
sameSite: 'Lax',
managed: false,
hostId: '{your-host-id}',
teamId: '{your-team-id}',
cookieMapKey: '_shopify_y',
platform: "SHOPIFY"
})
})curl --request POST \
--url https://api-sandbox.edgetag.io/tag \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {your-token}' \
--header 'Content-Type: application/json' \
--header 'Team-Id: {your-team-id}' \
--data '{
"name": "Domain",
"rootDomain": "domain.com",
"debug": false,
"sameSite": "Lax",
"managed": false,
"hostId": "{your-host-id}",
"teamId": "{your-team-id}",
"cookieMapKey": "_shopify_y",
"platform": "SHOPIFY"
}'Managed account
Last updated
Was this helpful?

