⌨️Get delivery info API

Gets delivery information for an escrow payment transaction.

Supported PGs
  • KG INICIS

  • NHN KCP

  • PAYJOA (Daou)

Gets delivery information for an escrow payment transaction.

GET https://api.iamport.kr/escrows/logis/{imp_uid}

Path Parameters

NameTypeDescription

imp_uid*

String

i'mport transaction ID

code * integer

Response code

0: success, Not 0: check the message

message * string

Response message

A non-zero code includes a message like 'Invalid payment info'.

response(EscrowLogisAnnotation, optional)

company *string

Courier code

invoice*string

Tracking number

sent_at*integer

Sent at UNIX TIMESTAMP

applied_at*integer

Delivery info created at UNIX TIMESTAMP

Response Model Schema
{
  "code": 0,
  "message": "string",
  "response": {
    "company": "string",
    "invoice": "string",
    "sent_at": 0,
    "applied_at": 0
  }
}

Last updated