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의 주문 식별자

ax_order_status

String

  • 주문 상태

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

    • "New" : 새 주문
      "Supplier pending" : Supplier 대기
      "Supplier confirm" : Supplier 확정
      "Supplier reject" : Supplier 거절
      "Traveler cancel" : 여행자 취소
      "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 confirm",
      "comment": "Supplier 확정",
    }
  ]
}

3) Error Spec

Expand
titleStatus Code : 403 Cause: 유효하지 않은 API Key 혹은 Channel Code
Code Block
{"message": "이 작업을 수행할 권한(permission)이 없습니다."}

...