Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Name

Type

Description

status_code

Integer

정상 처리 시 200

data

List[Object]

주문의 상태 및 상태에 대한 주석

channel_order_code

string

채널에서의 주문 식별자

ax_order_code

string

AX의 주문 식별자

status

String

  • 주문 상태

  • 주문 상태는 다음과 같습니다.

    • {"1New" : "New"}, # 새 주문
      {"2": "Supplier pending" }, # : Supplier 대기
      {"3": "Supplier confirm" }, # : Supplier 확정
      {"4": "Supplier reject" }, # : Supplier 거절
      {"5": "Traveler cancel" }, # : 여행자 취소
      {"6": "Unavoidable cancel" } # : 불가피한 취소

comment

String

주문 상태에 대한 주석

Expand
titleStatus Code : 200 정상 처리 시
Code Block
languagejson
{
  "status_code": 200,
  "data": [
    {
      "channel_order_code": "af01c7c4-1637-46fb-b289-a090a9be0397",
      "ax_order_code": "d96b2ed4-12c5-4fb5-ae94-4f39b11ee980",
      "status": "Supplier 3confirm",
      "comment": "Supplier 확정",
    }
  ]
}

...