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

kakao developers

Related sites
  • Docs
  • Kakao Moment
  • Bizboard landing settings

사이드 메뉴

Search

This document describes how to use the Bizboard landing settings API.

MethodURLAuthorization
GEThttps://apis.moment.kakao.com/openapi/v4/creatives/landing/talkBizFormsBusiness token

Returns a list of Business Forms that can be used to set the Business Form landing type when creating or editing a creative.

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
-BusinessForm[]Business Form information.
curl -X GET "https://apis.moment.kakao.com/openapi/v4/creatives/landing/talkBizForms" \
-H "Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}" \
-H "adAccountId: ${AD_ACCOUNT_ID}"
// HTTP/1.1 200 OK
// Content-Type: application/json;charset=UTF-8
[
{
"id": 2617,
"adAccountId": 1334,
"bizFormId": 5678,
"title": "Business Form",
"flowType": "SURVEY",
"linkedDate": "2020-01-01 01:00:00",
"beginDateTime": "2020-01-01 00:00",
"endDateTime": "2020-01-01 00:00"
}
]
MethodURLAuthorization
GEThttps://apis.moment.kakao.com/openapi/v4/creatives/landing/adViewsBusiness token

Returns a list of Ad Views required to set the Ad View landing type when creating or editing a creative.

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[]Ad View information.
NameTypeDescription
idLongAd View's ID.
Set landingInfo.adViewItem.id to this value when creating or editing a creative.
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
  • SCROLL
curl -X GET "https://apis.moment.kakao.com/openapi/v4/creatives/landing/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": 5678,
"name": "first_ad_view",
"type": "COMPACT",
"templateType": "IMAGE"
},
{
"id": 5679,
"name": "second_ad_view",
"type": "FULL",
"templateType": "SCROLL"
}
]
MethodURLAuthorization
GEThttps://apis.moment.kakao.com/openapi/v4/creatives/landing/channelPosts/${PROFILE_ID}Business token

Returns a list of Channel Posts required to set the Channel Post landing type when creating or editing a creative.

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
PROFILE_IDIntegerProfile ID.O
NameTypeDescription
itemsChannelPost[]Information of Channel Post.
curl -X GET "https://apis.moment.kakao.com/openapi/v4/creatives/landing/channelPosts/${PROFILE_ID}" \
-H "Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}" \
-H "adAccountId: ${AD_ACCOUNT_ID}"
// HTTP/1.1 200 OK
// Content-Type: application/json;charset=UTF-8
{
"items": [
{
"id": 1,
"title": "Post",
"status": "published",
"permalink": "http://kakao.com/_xxxx/1",
"createdDate": "2020-01-01 00:00:00",
"publishedDate": "2020-01-01 00:00:00"
}
]
}

Was this helpful?

    Kakao Moment > Bizboard landing settings - Kakao Developers | Docs