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 | - | Template creation date and time
|
updateTime |
String | - | Template modification date and time
|
channelId |
String | - | Channel ID |
templateCode |
String | - | Template code |
templateName |
String | - | Template name |
categoryCode |
String | - | Template category code |
categoryName |
String | - | Template category |
messageType |
String | - | Message type
|
emphasizeType |
String | - | Highlight type
|
content |
String | - | Template content |
adContent |
String | - | Ad content
|
extraContent |
String | - | Additional information content
|
title |
String | - | Highlight information title |
additionalTitle |
String | - | Highlight information secondary title |
comments |
Array | - | Inspection information: comments
|
templateInspectionStatus |
String | - | Inspection status
|
templateStatus |
String | - | Template status
|
buttons |
Array | - | Button list: buttons
|
securityFlag |
Boolean | - | Security setting status
|
isBlock |
Boolean | - | Whether it is blocked
|
isDormant |
Boolean | - | Dormancy
|
useImage |
Boolean | - | Image usage
|
imageName |
String | - | Image file name |
imageUrl |
String | - | Image URL |
useHeaderContent |
Boolean | - | Header usage
|
headerContent |
String | - | Header content |
useItemHighlight |
Boolean | - | Item highlight usage
|
useItemHighlightImage |
Boolean | - | Item highlight image usage
|
itemHighlight |
Object | - | Item highlight information |
itemHighlight.title |
String | - | Item highlight title |
itemHighlight.description |
String | - | Item highlight content |
itemHighlight.imageUrl |
String | - | Item highlight image URL |
item |
Object | - | Item list information |
item.list |
Array | - | Item list: list |
item.summary |
Object | - | Item summary information |
item.summary.title |
String | - | Item summary title |
item.summary.description |
String | - | Item summary content |
comments
The following describes comments.
| Field | Type | Required | Description |
|---|---|---|---|
commentId |
String | - | Inspection ID |
content |
String | - | Inspection content |
status |
String | - | Inspection status
|
createTime |
String | - | Inspection date and time
|
attachment |
Array | - | Inspection inquiry content attachment: attachment |
attachment
The following describes attachment.
| Field | Type | Required | Description |
|---|---|---|---|
fileName |
String | - | Attachment name |
fileUrl |
String | - | Attachment URL |
buttons
The following describes buttons.
| Field | Type | Required | Description |
|---|---|---|---|
order |
Integer | - | Button order |
type |
String | - | Button type
|
name |
String | - | Button name |
linkMobile |
String | - | Mobile web link |
linkPc |
String | - | PC web link |
schemeIos |
String | - | iOS app link |
schemeAndroid |
String | - | Android app link |
list
The following describes list.
| Field | Type | Required | Description |
|---|---|---|---|
title |
String | - | Name of the item |
description |
String | - | 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
}
]