스토어 설정
스토어 공개 설정
스토어 이름·로고·고객센터와 비회원 주문 허용 여부(`guestCheckout`)를 돌려준다. `guestCheckout`이 false면 로그인하지 않은 구매자의 주문서 생성·결제 요청이 403 `GUEST_CHECKOUT_DISABLED`이므로 주문 버튼을 로그인 안내로 바꾼다. 장바구니 담기는 막지 않는다.
스토어 이름·로고·고객센터와 비회원 주문 허용 여부(guestCheckout)를 돌려준다. guestCheckout이 false면 로그인하지 않은 구매자의 주문서 생성·결제 요청이 403 GUEST_CHECKOUT_DISABLED이므로 주문 버튼을 로그인 안내로 바꾼다. 장바구니 담기는 막지 않는다.
AuthorizationBearer <token>
회원 accessToken
In: header
Response Body
application/json
curl -X GET "https://example.com/storefront/v1/store"{ "meta": { "status": 200, "code": "OK", "message": "OK", "isSuccess": true }, "data": { "storeCode": "string", "name": "string", "logoUrl": "string", "customerCenterPhone": "string", "businessHours": "string", "guestCheckout": true, "loginMethods": [ "password" ] }, "error": null}