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
- Authentication - 인증 방식 상세
- Order Flow - 주문 처리 전체 흐름
- API Reference - 전체 엔드포인트 명세
Last updated on