The following objects are used by this endpoint:
HTTP METHOD |
URI |
DESCRIPTION |
---|---|---|
|
Retrieve retargetingDataValue by ID. |
|
|
Retrieve multiple retargetingDataValue objects by query parameters. |
|
|
Save multiple retargetingDataValues. |
Important
Important:
-
For PUT calls, do the following:
-
For any PUT method that updates an object, make sure that you include the entire "result": object from the GET response in the request body. If there is missing information, even if it is read-only, the request might fail or override the existing fields with the new values.
-
You must also change the "result": to "entities": and make the entities contents into an array. For example, here is the output from the GET request:
{ "result": { "type": "Advertiser", ... } }
You should make the following modifications, including your specific modifications, to the json object that you submit for the request.
{ "entities": [{ "type": "Advertiser", ... }] }
-
-
For POST calls, do the following:
-
Include the fields marked as Required, as indicated in the corresponding Object article.
-
Format the JSON object as follows:
{ "entities": [{ "type": "Advertiser", ... }] }
-
Retrieve retargetingDataValue by ID.
Retrieves multiple retargetingDataValues. Can be filtered according to query parameters.
Name |
Description |
Type |
Required |
Notes |
---|---|---|---|---|
from |
Starting index by which to fetch new retargeting activities for paging purposes. |
Long |
Required |
Getting multiple entities requires using from and max query parameters. |
max |
Maximum number of retargeting activities to fetch for each page. |
Long |
Required |
|
q |
Filtering options for the request (see here). |
String |
Optional |
Example of query string: q={"1":{"CREATEDBYNAME":["MonicaSmith"]},"2":{"ADVERTISERNAME":["autoads"]}} NoteNote: The date is according to the Unix epoch timestamp. |
GET https://adapi.sizmek.com/sas/tagManagers/retargetingDataValue/?q={query}&max=500&from=0
Create one or more retargetingDataValues.
The following table lists the possible HTTP status codes in responses.
CODE |
DESCRIPTION |
---|---|
66107 |
RetargetingDataValues list is empty. |
66108 |
Mismatch between retargeting activity and advertiser relation. |
66109 |
RetargetingDataValues entities number size exceeded. |
66110 |
RetargetingData list is not empty and UseRetargetingDataValueObject is ON. Please remove item from the list. |
Comments