Developers
V1
V2

Get delivery info API

Gets delivery information for an escrow payment transaction.

Supported PGs

  • KG INICIS
  • NHN KCP
  • PAYJOA (Daou)
GET https://api.iamport.kr/escrows/logis/{imp_uid}

Gets delivery information for an escrow payment transaction.

Parameters

Path

imp_uid*
String

iโ€™mport transaction ID

Responses

200: OK
Success

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

400: Bad Request
Missing parameter (varies by PG) or request not supported by specified PG
{
  // Response
}
401: Unauthorized
Missing or invalid access token
{
  // Response
}
404: Not Found
No result found
{
  // Response
}
500: Internal Server Error
Server error
{
  // Response
}

Response Model Schema

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