⌨️구매자 정보 단건 삭제 API

구매자의 KCP 퀵페이 정보 삭제

Deprecated

이 문서는 더 이상 관리되지 않습니다.

PortOne 개발자센터를 이용해주세요.

구매자의 KCP 퀵페이 정보를 삭제합니다.

Accept 설정 필수

http header 에 아래와 같이 Accept 를 설정하셔야 합니다.

Accept : application/json

구매자의 KCP 퀵페이 정보 삭제

DELETE https://api.iamport.kr/kcpquick/members/{member_id}

Path Parameters

code * integer

응답코드

0이면 정상적인 조회, 0 이 아닌 값이면 message를 확인해봐야 합니다

message * string

응답메세지

code 값이 0이 아닐 때, '존재하지 않는 결제정보입니다'와 같은 오류 메세지를 포함합니다

response (KcpQuickMemberAnnotation, optional)

member_id * string

고객 고유번호

pg_provider * string

PG사 코드

pg_id * string

PG사 상점아이디

inserted * integer

유저 정보가 등록된 시각 UNIX timestamp

updated * integer

유저 정보가 업데이트된 시각 UNIX timestamp

Response Model Schema
{
  "code": 0,
  "message": "string",
  "response": {
    "member_id": "string",
    "pg_provider": "string",
    "pg_id": "string",
    "inserted": 0,
    "updated": 0
  }
}

Last updated