빌키 삭제

빌키 삭제 API

발급받은 빌키를 더 이상 사용하지 않을 경우 삭제 요청하는 API 입니다.
HTTP POST방식으로 호출하시기 바랍니다.

요청

URL 정보

테스트 https://testpgapi.easypay.co.kr/api/trades/removeBatchKey
운영 https://pgapi.easypay.co.kr/api/trades/removeBatchKey

파라미터

필드명 타입 최대크기 필수여부 설명
mallId String 8 Byte 필수 KICC에서 부여한 상점ID
shopTransactionId String 60 Byte 필수 가맹점 트랜젝션ID
중복요청을 방지를 위해 일별로 Unique 보장
batchKey String 40 Byte 필수 삭제할 빌키
removeReqDate String 8 Byte 필수 삭제 요청일(yyyyMMdd)

요청 예

{

   "mallId": "T0001997",

   "shopTransactionId": "20210326090126",

   "batchKey" : "T00019972103BA260900",

   "removeReqDate" : "20210326"

}

응답

Body

필드명 타입 최대크기 필수여부 설명
resCd String 4 Byte 필수 결과코드
resMsg String 100 Byte 필수 결과 메시지
mallId String 8 Byte 필수 KICC에서 부여한 상점ID
shopTransactionId String 60 Byte 필수 가맹점 트랜젝션ID
중복요청을 방지를 위해 일별로 Unique 보장
removeReqDate String 8 Byte 삭제 요청일(yyyyMMdd)

응답 예

{

   "resCd": "0000",

   "resMsg": "정상처리",

   "mallId": "T0001997",

   "shopTransactionId": "20210326090126",

   "removeReqDate": "20210326"

}