The various methods for Tag generation are listed below:
This will generate tags for the retail media campaign.
Parameters
Name | Data Type | Requirement | Parameter Type | Description |
---|---|---|---|---|
accountId | string | Mandatory | path | ID of the advertiser account created on the platform. |
retailCampaignIdx | string | Mandatory | path | ID of the retail campaigns. |
Sample Request
xxxxxxxxxx
POST http://demo.stub.api.jivox.com/v2/accounts/:accountId/retail-campaigns/:retailCampaignIdx/activate
The Parameter:
|
The trackerType array will be empty, if MOAT is not selected for that campaign. |
Request Body
xxxxxxxxxx
{
"trackerTypes": ["MOAT"]
}
Sample Response
xxxxxxxxxx
{
"message" : "Tags are getting generated and email will be sent shortly.",
"executionId" : <executionId>
}
This will get the status of the tag generation request for campaign.
Parameters
Name | Data Type | Requirement | Parameter Type | Description |
---|---|---|---|---|
accountId | string | Mandatory | path | ID of the advertiser account created on the platform. |
retailCampaignIdx | string | Mandatory | path | ID of the retail campaigns. |
Sample Request
xxxxxxxxxx
GET http://demo.stub.api.jivox.com/v2/accounts/:accountId/retail-campaigns/:retailCampaignIdx/status
The executionid is fetched from the activate response |
Sample Response
{
"percentage" : "0"
}
{
"percentage" : "10"
}
{
"percentage" : "100"
}
This will download the tags for the retail media campaign.
Parameters
Name | Data Type | Requirement | Parameter Type | Description |
---|---|---|---|---|
accountId | string | Mandatory | path | ID of the advertiser account created on the platform. |
retailCampaignIdx | string | Mandatory | path | ID of the retail campaigns. |
Sample Request
xxxxxxxxxx
GET http://demo.stub.api.jivox.com/v2/accounts/:accountId/retail-campaigns/:retailCampaignIdx/tags/download
File will be downloaded automatically. |
This will get trackers type associated with retail media campaign.
Parameters
Name | Data Type | Requirement | Parameter Type | Description |
---|---|---|---|---|
accountId | string | Mandatory | path | ID of the advertiser account created on the platform. |
retailCampaignIdx | string | Mandatory | path | ID of the retail campaigns. |
Sample Request
xxxxxxxxxx
GET http://demo.stub.api.jivox.com/v2/accounts/:accountId/retail-campaigns/:retailCampaignIdx/trackers
The Parameter:
|
The Get Tracker API will return all the trackers present and the trackers selected for this campaign. |
Sample Response
xxxxxxxxxx
{
"trackerTypes": ["MOAT"]
"trackersSelected": ["MOAT"] // or empty
}