⌨️외부 발급내역 단건 조회 API

포트원 API를 통해 현금영수증만 발행된 건의 상세정보를 조회하는 API입니다

Deprecated

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

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

현금영수증 발급내역을 조회합니다.

포트원을 통해 현금영수증 거래만 발급한 정보를 획득합니다.

GET https://api.iamport.kr/receipts/external/{merchant_uid}

Path Parameters

NameTypeDescription

merchant_uid*

String

주문번호

code * integer

응답코드

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

message * string

응답메세지

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

response (ExternalReceiptAnnotation, optional)

merchant_uid * string

주문번호

receipt_tid string

현금영수증 PG사 발행고유번호

apply_num * string

현금영수증 국세청 발행번호

type * string

현금영수증 발행대상 타입

  • 개인 : person

  • 사업자 : company

amount * integer

현금영수증 발행금액

vat * integer

부가세

receipt_url string

발행된 현금영수증 URL

applied_at * integer

현금영수증 발행시각 UNIX TIMESTAMP

cancelled_at integer

현금영수증 발행취소시각 UNIX TIMESTAMP

Response Model Schema
{
  "code": 0,
  "message": "string",
  "response": {
    "merchant_uid": "string",
    "receipt_tid": "string",
    "apply_num": "string",
    "type": "person",
    "amount": 0,
    "vat": 0,
    "receipt_url": "string",
    "applied_at": 0,
    "cancelled_at": 0
  }
}

Last updated