KakaoTalk Categories

The KakoaTalk categories endpoint offers a way for you to manage all of the KakaoTalk template categories that you can use with the Conversation API.

List all sender categories. GA

Returns a list of sender categories.
SecurityBasic or OAuth2.0
Request
path Parameters
projectId
required
string

The unique ID of the project. You can find this on the Sinch Dashboard.

Responses
200

List of sender categories.

Response Schema: application/json
required
Array of objects (KakaotalkSenderCategoryDto)

List of sender categories.

Array
parentCode
required
string [ 0 .. 4 ] characters

The code of the parent category.

depth
required
number [ 1 .. 3 ]

The depth in category tree.

code
required
string [ 3 .. 4 ] characters

The code of the category.

name
required
string

The name of the category.

subcategories
required
Array of objects (KakaotalkSenderCategoryDto)

List of subcategories.

400

BadRequest

401

Unauthorized

500

InternalServerError

get/v1/projects/{projectId}/kakaotalk/categories/senders
Request samples
Response samples
application/json
Response with sender categories.
{
  • "categories": [
    • {
      },
    • {
      }
    ]
}

List all template categories in project GA

Returns a list of template categories for the specified project.
SecurityBasic or OAuth2.0
Request
path Parameters
projectId
required
string

The unique ID of the project. You can find this on the Sinch Dashboard.

plusFriendId
required
string

The unique ID of the sender.

query Parameters
pageSize
number [ 1 .. 100 ]

The page size requested.

pageToken
string

The page token if retrieving the next page from a previous query.

Responses
200

List of template categories

Response Schema: application/json
totalSize
required
number

Total size of the entries matching the search query.

pageSize
required
number

Requested size of the page.

required
Array of objects (KakaotalkTemplateCategoryDto)

List of template categories.

previousPageToken
string

Encoded token to use in list request to fetch previous batch of entries.

nextPageToken
string

Encoded token to use in list request to fetch next batch of entries.

400

BadRequest

401

Unauthorized

404

NotFound

500

InternalServerError

get/v1/projects/{projectId}/kakaotalk/categories/senders/{plusFriendId}/templates
Request samples
Response samples
application/json
Response with categories.
{
  • "totalSize": 2,
  • "pageSize": 50,
  • "categories": [
    • {
      }
    ]
}