...
Name | Required | Type | Description |
---|---|---|---|
ax_status | O | String |
|
channel_status | O | String |
|
comment | X | String |
|
3) Response
Name | Type | Description | ||||
---|---|---|---|---|---|---|
status_code | Integer | 정상 처리 시 200 | ||||
data | Object | - | ||||
channel_order_code | String | 채널의 취소된 주문의 식별자 | ||||
channel_order_status | String | 취소된 Channel의 주문 상태 | ||||
ax | List[Object] | - | ||||
ax_order_code | String | AX의 취소된 주문의 식별자 | ||||
ax_order_status | String | 취소된 AX의 주문 상태comment | String | 취소시 남긴 주석 |
Expand | ||
---|---|---|
| ||
|
4) Error Spec
Expand | ||
---|---|---|
| ||
|
Expand | ||
---|---|---|
| ||
|
3. Request Example
...
Code Block |
---|
curl -X 'PATCH' \ 'https://test.ax-cloud.com/v1/channel/orders/day-ticket/915c1218-f41c-492b-bb0b-96177ff4d2ee' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ -H "Authorization: Token api_key_secret" \ -d '{ "channel_order_code": "915c1218-f41c-492b-bb0b-96177ff4d2ee", "channel_order_status": "Traveler cancel", "ax_order_code": "b9872ed4-12c5-4fb5-ae18-4f39b11ee912", "ax_order_status": "Traveler cancel", "comment": "여행자의 개인 사정으로 인한 취소" }' |
...