...
채널에서 발생한 여행자 취소에 대해 AX Cloud 에 요청 합니다.
해당 요청으로 채널에서 발생한 취소를 처리할 수 있습니다.
주문 전체 취소가 아니라 부분 취소를 원하면 티켓 단위로 취소할 수 있습니다. 주문 - 날짜지정형티켓 날짜지정형 입장권 주문 부분 취소 요청
Drawio | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...
Name | Required | Type | Description |
---|---|---|---|
ax_status | O | String |
|
channel_status | O | String |
|
comment | X | String |
|
...
Expand | ||
---|---|---|
| ||
|
...
Code Block |
---|
curl -X 'PATCH' \ 'https://prod.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" \ -H "Channel: Code code_secret" \ -d '{ "channel_order_code": "915c1218-f41c-492b-bb0b-96177ff4d2ee", "channel_order_status": "5Traveler cancel", "ax_order_code": "b9872ed4-12c5-4fb5-ae18-4f39b11ee912", "ax_order_status": "5Traveler cancel", "comment": "여행자의 개인 사정으로 인한 취소" }' |
...