구매자 문의 API

내 문의 목록 조회 API입니다. 조회 전용입니다.

엔드포인트

구분설명

GET /inquiries

문의 목록 (inquiries:read)

목록 조회

쿼리: status, inquiry_type

본인 문의와 답변(responses)을 함께 반환합니다.

bash
curl "https://qnector.kr/api/v1/buyer/inquiries?status=pending" \
  -H "Authorization: Bearer qnc_buyer_YOUR_API_KEY"

엔드포인트 예시

GET /inquiries

문의 목록 (inquiries:read)

응답 예시 (200)

json
{
  "data": [
    {
      "title": "납기 문의",
      "content": "다음 주 입고 가능한가요?",
      "status": "pending",
      "inquiry_type": "general",
      "created_at": "2026-06-26T12:00:00Z",
      "responses": []
    }
  ],
  "meta": {},
  "errors": []
}

응답 필드

필드필수여부자릿수/형식설명
title-string문의 제목
content-string문의 본문
status-string문의 상태(pending 등)
inquiry_type-string | null문의 유형
created_at-string (ISO 8601)작성 시각
responses[].content-string답변 본문
responses[].responder_type-string | null답변자 유형
responses[].created_at-string답변 시각

제한 사항

  • 문의 작성·답변은 1차 범위에서 제공하지 않습니다.
  • inquiries:read 스코프와 유료 api_access가 필요합니다.