한도 변경 이력 조회
작성일 2026.03.18 | 수정일 2026.03.25
GET
/quota/v1/historyQuery
historyId— 이력 ID로 필터링(32자)
startKey— 페이지네이션 시작 키
limit—
dateCreated— 생성일시 필터 (ISO 8601) 지원 연산자 gte, lte, gt, lt, eq
dateUpdated— 수정일시 필터 (ISO 8601) 지원 연산자 gte, lte, gt, lt, eq
chat
지원 연사자를 사용하실 경우 Query Operator 가이드를 참조하세요
현재 로그인한 계정의 발송 한도 변경 이력을 조회합니다. 한도가 실제로 변경된 경우만 반환됩니다 (이전 한도와 새 한도가 동일한 이력은 제외)
Response
Structure
Response
{
"historyList": [
{
"historyId": "QT01HI_abc12345678901234567890",
"accountId": 12345678901234,
"refHandleKey": null,
"oldQuota": 50,
"newQuota": 200,
"dateCreated": "2024-07-01T12:00:00.000Z",
"dateUpdated": "2024-07-01T12:00:00.000Z"
},
{
"historyId": "QT01HI_def12345678901234567890",
"accountId": 12345678901234,
"refHandleKey": "QT01IQ_abc12345678901234567890",
"oldQuota": 200,
"newQuota": 1000,
"dateCreated": "2024-08-01T12:00:00.000Z",
"dateUpdated": "2024-08-01T12:00:00.000Z"
}
]
}