post https://api.kevel.co/v1/advertiser/search
This returns advertiser properties via a search on the advertiser's name.
This endpoint accepts a string key/value pair as its payload instead of a JSON object.
You'll need to pass in a single string with a key of advertiserName
. The value should be the term you want to search for.
To search for a single, exact word: "advertiserName=Nike"
To search for multiple words, use url encoding: advertiserName=20th%20Century%20Fox
To search for a substring urlencode the character %
as a prefix and suffix. For example, to find all advertisers with names that contain the string bank
, you should search for %25bank%25
.
If nothing is found, you'll see items
is blank, like "Items": []
.