The following objects are used by this endpoint:
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", ... }] }
-
Retrieves the existing feed settings of an ad.
Create a new feed file.
Update an existing ad's feed settings.
The following table lists the possible HTTP status codes in responses.
CODE |
STRING |
DESCRIPTION |
---|---|---|
200OK |
Success |
Successful API execution |
500 |
Internal Error |
Comments