그룹 메시지 목록 조회
작성일 2026.03.05 | 수정일 2026.03.05
GET
/messages/v4/groups/:groupId/messagesParameters
groupId*— 메시지 목록을 조회할 그룹의 아이디
Query
limit— 한 번에 조회할 메시지 수입니다.
startKey— 이전 응답의 nextKey 값을 넣으면 해당 위치부터 이어서 조회합니다.
그룹에 추가된 메시지 목록을 조회합니다. 발송 전에 어떤 메시지가 등록되어 있는지 확인하거나, 발송 후 개별 메시지의 상태를 확인할 때 사용합니다.
Response
messageList는 그룹 목록과 마찬가지로 messageId를 key로 하는 객체 형태입니다.
Structure
{
"startKey": null,
"nextKey": "M4V20260302143500XXXXXXXXXXXXXXX",
"limit": 20,
"messageList": {
"M4V20260302143506CQKNPHTPCX4P5E": {
"messageId": "M4V20260302143506CQKNPHTPCX4P5E",
"groupId": "G4V20260302143025ABCDEFGHIJKLMNO",
"accountId": "23010100000001",
"to": "01012345678",
"from": "0212345678",
"text": "테스트 메시지입니다.",
"type": "SMS",
"country": "82",
"subject": null,
"imageId": null,
"customFields": {},
"status": "COMPLETE",
"statusCode": "4000",
"reason": "정상 처리",
"networkCode": "10001",
"networkName": "SKT",
"replacement": false,
"replacements": [],
"autoTypeDetect": true,
"unavailableSenderNumber": false,
"faxPageCount": 0,
"resendCount": 0,
"voiceReplied": 0,
"voiceDuration": 0,
"queues": [
{
"name": "sms",
"statusCode": "4000"
}
],
"currentQueue": null,
"dateProcessed": "2026-03-02T05:35:08.000Z",
"dateReported": "2026-03-02T05:35:09.000Z",
"dateReceived": "2026-03-02T05:35:10.000Z",
"dateCreated": "2026-03-02T05:35:06.000Z",
"dateUpdated": "2026-03-02T05:35:10.000Z",
"log": [
{
"createAt": "2026-03-02T05:35:06.000Z",
"message": "메시지가 생성되었습니다."
}
]
}
}
}