Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Publisher ID
Query Parameters
Comma separated list of config ID's
curl --request GET \
--url https://api.tagdeliver.com/v1/tag/{uid}/experiment/compare \
--header 'Authorization: Bearer <token>'{
"results": [
{
"config_id": 8390,
"real_allocation": 0,
"allocation": "n/a",
"unit": "iab",
"label": "MPU 2",
"status": 1,
"config": {
"In View": true
}
},
{
"config_id": 8391,
"real_allocation": 0,
"allocation": "n/a",
"unit": "iab",
"label": "MPU 2 (OOV)",
"status": 0,
"config": {
"In View": false
}
}
],
"success": true
}Takes a list of configs, and returns the differences between them. Used before creating an experiment to confirm the bahavioural subject(s) that the experiment will be testing
curl --request GET \
--url https://api.tagdeliver.com/v1/tag/{uid}/experiment/compare \
--header 'Authorization: Bearer <token>'{
"results": [
{
"config_id": 8390,
"real_allocation": 0,
"allocation": "n/a",
"unit": "iab",
"label": "MPU 2",
"status": 1,
"config": {
"In View": true
}
},
{
"config_id": 8391,
"real_allocation": 0,
"allocation": "n/a",
"unit": "iab",
"label": "MPU 2 (OOV)",
"status": 0,
"config": {
"In View": false
}
}
],
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Publisher ID
Comma separated list of config ID's
Was this page helpful?