/creativesets
GET
A GET
request can always be filtered by the get parameters defined in the introduction section of the API documentation.
Example GET request:
GET https://api.adnuntius.com/api/v1/creativesets?context=<context>
in order to see HIDDEN
objects you will need to send includeHidden=true
as a parameter to the GET
query
POST
Example POST object:
POST https://api.adnuntius.com/api/v1/creativesets/<id>?context=<context>
You can also add a targeting object in the post payload to narrow down your result to specific sites or publishers. Read more about targeting objects here.
{
"id": "<CREATIVE-SET-ID>",
"renderOption": null,
"startDate": "2024-12-10T23:00:00.000Z",
"endDate": "2024-12-12T23:00:00.000Z",
"userState": "APPROVED",
"name": "tests",
"billingCurrency": "NOK",
}
id
yes
String
An identifier that is used to reference the creative set.
renderOption
no
null | 'div' | 'iframe'
A url encoded string of your search sentence.
startDate
yes
UTC Date String
A date string for when you want the creative set to go live, example: "2024-12-10T23:00:00.000Z"
endDate
no
UTC Date String
A date string for when you want the creative set to end, example: "2024-12-12T23:00:00.000Z"
userState
yes
'APPROVED' | 'INCOMPLETE' | 'PAUSED'
Approved will go live, the other two will pause the creative set from delivering.
name
yes
String
A name for the creative set.
billingCurrency
yes
String of currencu eg: 'NOK'
The currency you want the billing to be in. Will have to be a currency that's setup in the network
Last updated