Request
URL
https://openapi.naver.com/v1/ad-api
: v1 is a fixed value and is not used for API versioning.{version}
: This part is specified by each API. The default value is 1.0.
Call an API with a manager account
- If you are granted permission to an ad account, there is nothing specific to consider when calling an API.
- If you are granted permission to a manager account only, then you must include the
AccessManagerAccountNo
value in HEADER when you call an API for an ad account under the manager account; otherwise, permission error will occur.- Example: Getting a list of campaigns of a "456" ad account under an "123" manager account
curl -X GET 'https://openapi.naver.com/v1/ad-api/1.0/adAccounts/456/campaigns' \
-H 'AccessManagerAccountNo: 123' -H 'Authorization: Bearer {ACCESS_TOKEN}'