⌨️Update order status API

Updates the status of a PAYCO order.

Updates the status of a PAYCO order.

POST https://api.iamport.kr/payco/orders/status/{imp_uid}

Path Parameters

NameTypeDescription

imp_uid*

String

i'mport transaction ID

Request Body

NameTypeDescription

status*

String

Status code

DELIVERY_START

PURCHASE_DECISION

CANCELED

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 (PaycoStatusAnnotation, optional)

status*string

PAYCO updated order status

['DELIVERY_START', 'PURCHASE_DECISION', 'CANCELED']

Response Model Schema
{
  "code": 0,
  "message": "string",
  "response": {
    "status": "DELIVERY_START"
  }
}

Last updated