사이드 메뉴
Getting started
Kakao Developers
Login
Communication
Advertisement
- Concepts
- Ad creation: Ad account
- Ad creation: Campaign
- Ad creation: Ad group
- Targeting for ad group
- Custom audience targeting for ad group
- Ad creation: Creative common
- Ad creation: Display creative
- Ad creation: Message creative
- Ad creation: Personalized message creative
- Bizboard landing settings
- Report
- Message management
- Personalized message management
- Message ad management
- Message ad operation
- Ad View management
- Business Form+ management
- Business Form linkage management
- Pixel & SDK linkage management
- Audience management
- Engagement targeting management
- Customer file management
- Friend group management
- Ad account management
- Reference
- Type information
- Error code
Kakao Moment
Pixel & SDK linkage management
This document describes how to use the Pixel & SDK linkage management APIs.
| Method | URL | Authorization |
|---|---|---|
GET | https://apis.moment.kakao.com/openapi/v4/trackers/rights | Business token |
| Permission | Prerequisite | Business Authentication | Business consent items |
|---|---|---|---|
| Required: Request permission | Switch to a Biz app Set Business redirect URI Business consent items | Required | Required |
Returns the list of Pixel & SDKs linked to the ad account.
Target population passed in the response indicates the estimated number of reach by collecting data through the corresponding event for the last 120 days from midnight. The data is updated every 3 P.M.
This API limits the number of calls you can make to every five seconds per user account.
| Name | Description | Required |
|---|---|---|
| Authorization | Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}Business token as a type of user authentication. | O |
| adAccountId | adAccountId: ${AD_ACCOUNT_ID}Ad account's ID. | O |
| Name | Type | Description |
|---|---|---|
| - | TrackRights[] | List of Pixel & SDK information. |
| Name | Type | Description |
|---|---|---|
| trackId | String | Track ID. |
| trackName | String | Name of the linked Pixel & SDK. |
| population | String | Target population. Estimated reach calculated through the data from midnight to the last 180 days with the corresponding event. The data is updated every 3 P.M. |
| eventStatus | String | Status. Either PRE_COLLECTION (Before collecting) or COLLECTION (Collecting). |
| createdDate | String | Date and time when the event is created in yyyy-MM-dd'T'HH:mm:ss.SSS format. |
| lastEventDate | String | Date and time when the event is lastly checked in yyyy-MM-dd'T'HH:mm:ss.SSSXXX format. |
| role | String | Track permission. Either MASTER or MEMBER. |
Request
curl -X GET "https://apis.moment.kakao.com/openapi/v4/trackers/rights" \-H "Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}" \-H "adAccountId: ${AD_ACCOUNT_ID}"
Response
// HTTP/1.1 200 OK// Content-Type: application/json;charset=UTF-8{"trackRights": [{"trackId": "1234567890","trackName": "pixel","population": 0,"eventStatus": "COLLECTION","createdDate": "2019-12-10T08:18:22.000+0000","lastEventDate": null,"role": "MASTER"},{"trackId": "1234567891","trackName": "Pixel","population": 0,"eventStatus": "PRE_COLLECTION","createdDate": "2020-01-01T00:00:00.000+0000","lastEventDate": "2020-01-01 15:00:00","role": "MEMBER"}]}
| Method | URL | Authorization |
|---|---|---|
GET | https://apis.moment.kakao.com/openapi/v4/trackers/rightAvailables | Business token |
| Permission | Prerequisite | Business Authentication | Business consent items |
|---|---|---|---|
| Required: Request permission | Switch to a Biz app Set Business redirect URI Business consent items | Required | Required |
Returns the list of Pixel & SDKs that can be linked.
You can add up to 100 Pixel & SDKs per ad account.
| Name | Description | Required |
|---|---|---|
| Authorization | Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}Business token as a type of user authentication. | O |
| adAccountId | adAccountId: ${AD_ACCOUNT_ID}Ad account's ID. | O |
| Name | Type | Description |
|---|---|---|
| - | PixelAndSdkInfo[] | List of Pixel & SDK information. |
| Name | Type | Description |
|---|---|---|
| trackId | String | Track ID. Pass this value for trackId when requesting the Link Pixel & SDK API. |
| name | String | Track name. |
| createdAt | String | Date and time of creation. |
| updatedAt | String | Date and time of modification. |
| role | String | Track permission. One of MASTER, MEMBER or REQUEST. |
Request
curl -X GET "https://apis.moment.kakao.com/openapi/v4/trackers/rightAvailables" \-H "Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}" \-H "adAccountId: ${AD_ACCOUNT_ID}"
Response
// HTTP/1.1 200 OK// Content-Type: application/json;charset=UTF-8[{"trackId": "1234567890123456789","name": "Pixel&SDK_available_to_add_permission","createdAt": "2020-01-01T00:00:00.000+0000","updatedAt": "2020-01-01T00:00:00.000+0000","role": "MEMBER"},{"trackId": "9876543210987654321","name": "Pixel&SDK_available_to_add_permission","createdAt": "2020-01-01T00:00:00.000+0000","updatedAt": "2020-01-01T00:00:00.000+0000","role": "REQUEST"}]
| Method | URL | Authorization |
|---|---|---|
POST | https://apis.moment.kakao.com/openapi/v4/trackers | Business token |
| Permission | Prerequisite | Business Authentication | Business consent items |
|---|---|---|---|
| Required: Request permission | Switch to a Biz app Set Business redirect URI Business consent items | Required | Required |
Enables you to link a specific Pixel & SDK to an ad account.
You can link to up to 100 Pixel & SDKs per ad account.
| Name | Description | Required |
|---|---|---|
| Authorization | Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}Business token as a type of user authentication. | O |
| adAccountId | adAccountId: ${AD_ACCOUNT_ID}Ad account's ID. | O |
| Name | Type | Description | Required |
|---|---|---|---|
| trackId | String | Track ID. Use trackId obtained through the View list of linkable Pixel & SDKs API. | O |
| adAccountId | Long | Ad account's ID. | O |
Request
curl -X POST "https://apis.moment.kakao.com/openapi/v4/trackers" \-H "Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}" \-H "adAccountId: ${AD_ACCOUNT_ID}" \-d '{"trackId": "5678901234","adAccountId": "12345"}'
Response
HTTP/1.1 200 OKContent-Type: application/json;charset=UTF-8
| Method | URL | Authorization |
|---|---|---|
DELETE | https://apis.moment.kakao.com/openapi/v4/trackers/${TRACK_ID} | Business token |
| Permission | Prerequisite | Business Authentication | Business consent items |
|---|---|---|---|
| Required: Request permission | Switch to a Biz app Set Business redirect URI Business consent items | Required | Required |
Enables you to unlink a specific Pixel & SDK from an ad account.
| Name | Description | Required |
|---|---|---|
| Authorization | Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}Business token as a type of user authentication. | O |
| adAccountId | adAccountId: ${AD_ACCOUNT_ID}Ad account's ID. | O |
| Name | Type | Description | Required |
|---|---|---|---|
| TRACK_ID | String | Track ID. Use trackId obtained through the View list of linked Pixel & SDKs API. | O |
Request
curl -v -X DELETE "https://apis.moment.kakao.com/openapi/v4/trackers/${TRACK_ID}" \-H "Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}" \-H "adAccountId: ${AD_ACCOUNT_ID}"
Response
HTTP/1.1 200 OKContent-Type: application/json;charset=UTF-8