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

Overview

Brightmall Vendor API는 입점사가 브라이트몰과 주문, 재고, 배송, 정산 데이터를 연동할 수 있는 REST API입니다.

Base URL

EnvironmentURL
Staginghttps://brightmall-backend.certi.life/vendor-api
Productionhttps://brightmall-backend.certi.life/vendor-api

Authentication

모든 API 요청에는 x-vendor-api-key 헤더가 필요합니다.

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

Response Format

모든 응답은 JSON 형식이며 공통 구조를 따릅니다:

{ "success": true, "data": { ... }, "error": null }

에러 응답:

{ "success": false, "data": null, "error": { "code": "INVALID_API_KEY", "message": "API key is invalid or expired" } }
Last updated on