공지 API
판매자·시스템 공지 목록 조회 API입니다. 작성·수정·삭제는 제공하지 않습니다.
엔드포인트
구분설명
GET /notices
공지 목록 (notices:read)
목록 조회
판매자 작성 공지와 시스템 공지를 함께 반환합니다.
공지에는 업무번호가 없어 목록 조회만 제공합니다.
bash
curl "https://qnector.kr/api/v1/seller/notices" \ -H "Authorization: Bearer qnc_live_YOUR_API_KEY"
엔드포인트 예시
GET /notices
공지 목록 (notices:read)
응답 예시 (200)
json
{
"data": [
{
"title": "휴무 안내",
"message": "6월 30일 휴무입니다.",
"notice_type": "seller",
"target_type": "all",
"created_at": "2026-06-20T09:00:00Z"
}
],
"meta": {},
"errors": []
}