설정 변경

자동충전 요청 한도와 만료 시간 등의 설정을 변경합니다.

PATCHhttps://bank.apiacc.com/settings

전달한 필드만 부분적으로 업데이트합니다. 계좌 정보 변경은 대시보드에서만 가능합니다.

계좌 정보는 API로 변경할 수 없습니다

보안상의 이유로 입금 계좌 번호와 예금주는 이 API로 변경할 수 없습니다. 대시보드의 계좌 설정 페이지에서 본인 인증 후 변경하세요.

요청 본문

필드타입필수제한예시
min_amount

허용되는 최소 충전 금액입니다.

integer선택1,000 이상1000
max_amount

허용되는 최대 충전 금액입니다.

integer선택min_amount 이상, 10,000,000 이하3000000
expires_in_seconds

충전 요청이 pending 상태로 유지되는 시간입니다.

integer선택60~600180
cooldown_seconds

동일 platform에서 연속 요청 사이의 최소 대기 시간입니다.

integer선택0~30030
curl -X PATCH "https://bank.apiacc.com/settings" \
  -H "Authorization: Bearer $BANK_API_KEY" \
  -H "Content-Type: application/json" \
  --max-time 10 \
  -d '{
    "min_amount": 1000,
    "max_amount": 3000000,
    "expires_in_seconds": 180
  }'

응답

200변경된 설정

{
  "settings": {
    "min_amount": 1000,
    "max_amount": 3000000,
    "expires_in_seconds": 180,
    "cooldown_seconds": 30,
    "updated_at": "2026-08-15T03:10:00Z"
  }
}

주요 오류

상태error
400invalid_amount_range
400invalid_expiry
429rate_limit_exceeded