⌨️주문상태 단건 수정 API
페이코 주문상품의 상태를 변경합니다
Last updated
Was this helpful?
페이코 주문상품의 상태를 변경합니다
POST https://api.iamport.kr/payco/orders/status/{imp_uid}
imp_uid*
String
포트원 고유번호
status*
String
주문상태코드
DELIVERY_START (배송시작-출고지시)
PURCHASE_DECISION (구매확정)
CANCELED (취소)
code * integer
응답코드
0이면 정상적인 조회, 0 이 아닌 값이면 message를 확인해봐야 합니다
message * string
응답메세지
code 값이 0이 아닐 때, '존재하지 않는 결제정보입니다'와 같은 오류 메세지를 포함합니다
response (PaycoStatusAnnotation, optional)
status * string
PAYCO 주문변경된 상태
['DELIVERY_START', 'PURCHASE_DECISION', 'CANCELED']
{
// Response
}Swagger Test Link
Last updated
Was this helpful?
Was this helpful?
{
"code": 0,
"message": "string",
"response": {
"status": "DELIVERY_START"
}
}