Skip to Content
API v1.7.0 Released - Settlement order number query + partial shipment support
GuidesQuick Start

Quick Start

3단계로 Brightmall Vendor API 연동을 시작하세요.

Step 1: API 키 확인

관리자로부터 발급받은 API 키를 확인합니다. 개발자 콘솔의 Settings 페이지에서도 확인할 수 있습니다.

Step 2: Health Check

API 연결 상태를 확인합니다:

curl -H "x-vendor-api-key: YOUR_API_KEY" \ https://brightmall-backend.certi.life/vendor-api/health

정상 응답:

{ "success": true, "data": { "status": "ok", "vendor": "SEIL", "timestamp": "2026-02-15T09:00:00.000Z" } }

Step 3: 주문 조회

최근 주문 목록을 조회합니다:

curl -X POST https://brightmall-backend.certi.life/vendor-api/orders \ -H "x-vendor-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"page": 1, "limit": 10}'

Next Steps

Last updated on