쇼핑몰 설정

쇼핑몰 설정 수정

PATCH
/admin/v2/mall/settings

Authorization

HTTPBasic
AuthorizationBasic <token>

In: header

Request Body

application/json

isDeliveryAlimtalkEnabled?boolean

배송 완료 알림톡 활성화 여부

isThanksAlimtalkEnabled?boolean

감사톡 활성화 여부

isMonthlyAlimtalkEnabled?boolean

한달톡 활성화 여부

thanksAlimtalkDelayDays?integer

배송 완료일 기준 감사톡 발송 지연 일수

rewardName?string

리워드 이름

rewardUnit?string

리워드 단위

isAutomaticRewardEnabled?boolean

리워드 자동 지급 여부

videoReviewRewardAmount?integer

비디오 리뷰 리워드 수량

imageReviewRewardAmount?integer

이미지 리뷰 리워드 수량

textReviewRewardAmount?integer

텍스트 리뷰 리워드 수량

textReviewRewardCondition?integer

텍스트 리뷰 최소 글자수 조건

reviewAllowedDays?integer

리뷰 작성 기한 일수

idleTimeoutMinutes?integer

Idle timeout 시간 (분)

twoFactorAuthPhoneNumber?string

2FA 인증 코드를 수신할 연락처 (E164 포맷)

Response Body

application/json

application/json

curl -X PATCH "https://api.vreview.tv/admin/v2/mall/settings" \  -H "Content-Type: application/json" \  -d '{}'
{
  "isDeliveryAlimtalkEnabled": true,
  "isThanksAlimtalkEnabled": true,
  "isMonthlyAlimtalkEnabled": true,
  "thanksAlimtalkDelayDays": 0,
  "rewardName": "string",
  "rewardUnit": "string",
  "isAutomaticRewardEnabled": true,
  "videoReviewRewardAmount": 0,
  "imageReviewRewardAmount": 0,
  "textReviewRewardAmount": 0,
  "textReviewRewardCondition": 0,
  "reviewAllowedDays": 0,
  "idleTimeoutMinutes": 0,
  "twoFactorAuthPhoneNumber": "string"
}