본문 바로가기메인 메뉴 바로가기사이드 메뉴 바로가기

kakao developers

Related sites
  • Docs
  • Kakao Moment
  • Ad View management

사이드 메뉴

Search

This document describes how to use the Ad View management APIs.

MethodURLAuthorization
GEThttps://apis.moment.kakao.com/openapi/v4/adViewsBusiness token

Returns a list of Ad Views.

You can use the retrieved Ad View information to set as a landing to or a landing type when you create a creative under the 'Kakao Bizboard' type of a campaign.

NameDescriptionRequired
AuthorizationAuthorization: Bearer ${BUSINESS_ACCESS_TOKEN}
Business token as a type of user authentication.
O
adAccountIdadAccountId: ${AD_ACCOUNT_ID}
Ad account's ID.
O
NameTypeDescription
-AdView[]List of Ad View information.
NameTypeDescription
idLongAd View's ID.
nameStringAd View's name.
typeStringAd View's type.
Either of FULL (Full view) or COMPACT (Compact view).
templateTypeStringTemplate type.
One of the followings:
  • IMAGE
  • VIDEO
  • CAROUSEL: Only for Compact view
  • SCROLL: Only for Full view
curl -X GET "https://apis.moment.kakao.com/openapi/v4/adViews" \
-H "Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}" \
-H "adAccountId: ${AD_ACCOUNT_ID}"
// HTTP/1.1 200 OK
// Content-Type: application/json;charset=UTF-8
[
{
"id": 1,
"name": "first_ad_view",
"type": "COMPACT",
"templateType": "IMAGE"
}
]
MethodURLAuthorization
GEThttps://apis.moment.kakao.com/openapi/v4/adViews/${ID}Business token

Returns detailed information about the specified Ad View.

NameDescriptionRequired
AuthorizationAuthorization: Bearer ${BUSINESS_ACCESS_TOKEN}
Business token as a type of user authentication.
O
adAccountIdadAccountId: ${AD_ACCOUNT_ID}
Ad account's ID.
O
NameTypeDescriptionRequired
IDLongAd View's ID.O
NameTypeDescription
idLongAd View's ID.
nameStringAd View's name.
typeStringAd View's type.
Either of FULL (Full view) or COMPACT (Compact view).
templateTypeStringTemplate type.
One of the followings:
  • IMAGE
  • VIDEO
  • CAROUSEL: Only for Compact view
  • SCROLL: Only for Full view
curl -X GET "https://apis.moment.kakao.com/openapi/v4/adViews/${ID}" \
-H "Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}" \
-H "adAccountId: ${AD_ACCOUNT_ID}"
// HTTP/1.1 200 OK
// Content-Type: application/json;charset=UTF-8
{
"id": 1,
"name": "first_ad_view",
"type": "COMPACT",
"templateType": "IMAGE"
}
MethodURLAuthorization
DELETEhttps://apis.moment.kakao.com/openapi/v4/adViews/${ID}Business token

Deletes an Ad View.

NameDescriptionRequired
AuthorizationAuthorization: Bearer ${BUSINESS_ACCESS_TOKEN}
Business token as a type of user authentication.
O
adAccountIdadAccountId: ${AD_ACCOUNT_ID}
Ad account's ID.
O
NameTypeDescriptionRequired
IDLongAd View's ID.O
curl -v -X DELETE "https://apis.moment.kakao.com/openapi/v4/adViews/${ID}" \
-H "Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}" \
-H "adAccountId: ${AD_ACCOUNT_ID}" \
-H "Content-Type: application/json"
HTTP/1.1 200 OK
Content-Length: 0
Content-Type: application/json;charset=UTF-8
// HTTP/1.1 400 Bad request
// Content-Type: application/json;charset=UTF-8
{
"code": -813,
"msg": "KakaoMomentException",
"extras": {
"detailCode": 39020,
"detailMsg": "이 애드뷰를 랜딩으로 사용중인 소재가 있어서 삭제할 수 없습니다."
}
}

Was this helpful?

    Kakao Moment > Ad View management - Kakao Developers | Docs