Available in Classic and VPC
Get template information of Alim Talk.
Request
This section describes the request format. The method and URI are as follows:
| Method | URI |
|---|---|
| GET | /alimtalk/v2/services/{serviceId}/templates |
Request headers
For information about the headers common to all Simple & Easy Notification Service APIs, see Simple & Easy Notification Service request headers.
Request path parameters
You can use the following path parameters with your request:
| Field | Type | Required | Description |
|---|---|---|---|
serviceId |
String | Required | Biz Message service ID
|
Request query parameters
You can use the following query parameters with your request:
| Field | Type | Required | Description |
|---|---|---|---|
channelId |
String | Required | Channel ID
|
templateCode |
String | Optional | Template code
|
templateName |
String | Optional | Template name
|
pageSize |
Integer | Optional | Number of items per page
|
pageIndex |
Integer | Optional | Page index
|
Request example
The request example is as follows:
curl --location --request GET 'https://sens.apigw.ntruss.com/alimtalk/v2/services/ncp:kkobizmsg:kr:16******8:sens/templates?channelId=%40********' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'
Response
This section describes the response format.
Response body
The response body includes the following data:
| Field | Type | Required | Description |
|---|---|---|---|
createTime |
String | Required | Template creation date and time
|
updateTime |
String | Optional | Template modification date and time
|
channelId |
String | Required | Channel ID |
templateCode |
String | Required | Template code |
templateName |
String | Required | Template name |
categoryCode |
String | Required | Template category code |
categoryName |
String | Required | Template category |
messageType |
String | Required | Message type
|
emphasizeType |
String | Required | Highlight type
|
content |
String | Required | Template content |
adContent |
String | Optional | Ad content
|
extraContent |
String | Optional | Additional information content
|
title |
String | Optional | Highlight information title |
additionalTitle |
String | Optional | Highlight information secondary title |
comments |
Array | Optional | Inspection information
|
templateInspectionStatus |
String | Required | Inspection status
|
templateStatus |
String | Required | Template status
|
buttons |
Array | Optional | Button list
|
securityFlag |
Boolean | Required | Security setting status
|
isBlock |
Boolean | Required | Whether it is blocked
|
isDormant |
Boolean | Required | Dormancy
|
useImage |
Boolean | Required | Image usage
|
imageName |
String | Optional | Image file name |
imageUrl |
String | Optional | Image URL |
useHeaderContent |
Boolean | Required | Header usage
|
headerContent |
String | Optional | Header content |
useItemHighlight |
Boolean | Required | Item highlight usage
|
useItemHighlightImage |
Boolean | Required | Item highlight image usage
|
itemHighlight |
Object | Optional | Item highlight information |
itemHighlight.title |
String | Optional | Item highlight title |
itemHighlight.description |
String | Optional | Item highlight content |
itemHighlight.imageUrl |
String | Optional | Item highlight image URL |
item |
Object | Optional | Item list information |
item.list |
Array | Optional | Item list |
item.summary |
Object | Optional | Item summary information |
item.summary.title |
String | Optional | Item summary title |
item.summary.description |
String | Optional | Item summary content |
comments
The following describes comments.
| Field | Type | Required | Description |
|---|---|---|---|
commentId |
String | Required | Inspection ID |
content |
String | Required | Inspection content |
status |
String | Required | Inspection status
|
createTime |
String | Required | Inspection date and time
|
attachment |
Array | Optional | Inspection inquiry content Attachment |
attachment
The following describes attachment.
| Field | Type | Required | Description |
|---|---|---|---|
fileName |
String | Required | Attachment name |
fileUrl |
String | Required | Attachment URL |
buttons
The following describes buttons.
| Field | Type | Required | Description |
|---|---|---|---|
order |
Integer | Required | Button order |
type |
String | Required | Button type
|
name |
String | Required | Button name |
linkMobile |
String | Optional | Mobile web link |
linkPc |
String | Optional | PC web link |
schemeIos |
String | Optional | iOS app link |
schemeAndroid |
String | Optional | Android app link |
item.list
The following describes item.list.
| Field | Type | Required | Description |
|---|---|---|---|
title |
String | Required | Name of the item |
description |
String | Required | Item content |
Response status codes
For information about the HTTP status codes common to all Simple & Easy Notification Service APIs, see Simple & Easy Notification Service response status codes.
Response example
The response example is as follows:
When querying list
[
{
"createTime": "2025-11-25T10:38:52.604",
"updateTime": "2025-11-25T10:41:21.538",
"channelId": "@********",
"templateCode": "templatecode1",
"templateName": "t001"
}
]
When querying details (querying including templateCode)
[
{
"createTime": "2025-11-25T10:38:52.604",
"updateTime": "2025-11-25T10:41:21.538",
"channelId": "@********",
"templateCode": "templatecode1",
"templateName": "t001",
"categoryCode": "009001",
"categoryName": "Coupon issuance",
"messageType": "BA",
"emphasizeType": "TEXT",
"content": " New customer welcome coupon!\nSign up now to receive a 5000 KRW\ncoupon you can use right now.\n Get coupon: #{URL}",
"title": "New customers benefit",
"additionalTitle": "New customer welcome coupon issuance",
"comments": [],
"templateInspectionStatus": "REGISTER",
"templateStatus": "READY",
"buttons": [],
"securityFlag": false,
"isBlock": false,
"isDormant": false,
"useImage": false,
"useHeaderContent": false,
"useItemHighlight": false
}
]