시작하기
home
둘러보기
home

주문상태 변경 (개발 테스트 전용)

1. 주문처리중 상태로 변경

PUT /ac/api/external/order-status-test/processing/{orderId}

요청 주문건을 주문처리중 상태로 변경합니다.
요청예시
curl -X 'PUT' \ 'https://dev-api.pod.shop/ac/api/external/order-status-test/processing/2531' \ -H 'accept: application/hal+json' \ -H 'Authorization: Bearer {token}'
Shell
복사

2. 발송완료 상태로 변경

PUT /ac/api/external/order-status-test/delivery/start/{orderId}

주문상품 단위로, 발송완료 상태로 변경합니다.

Body Parameter

Name
필수여부
Type
orderEntryIdList
Y
Array
주문 상품 아이디(entryId)
projectIdList
Y
Array
상품 번호 * channelProductId / designTemplateId / channelOptionVariantId 를 이용해 획득한 상품 고유 ID (장바구니번호)
orderEntryIdList, projectIdList 둘중 하나는 필수로 보내주셔야 합니다.
요청예시
curl -X 'PUT' \ 'https://dev-api.pod.shop/ac/api/external/order-status-test/delivery/start/2531' \ -H 'accept: application/hal+json' \ -H 'Authorization: Bearer {token}' \ -H 'Content-Type: application/json' \ -d '{ "orderEntryIdList": [ 7757,7758 ], "projectIdList": [ 38812 ] }'
Shell
복사

3. 배송중 상태로 변경

PUT /ac/api/external/order-status-test/delivery/progress/{orderId}

주문상품 단위로, 배송중 상태로 변경합니다.

Body Parameter

Name
필수여부
Type
orderEntryIdList
Y
Array
주문 상품 아이디(entryId)
projectIdList
Y
Array
상품 번호 * channelProductId / designTemplateId / channelOptionVariantId 를 이용해 획득한 상품 고유 ID (장바구니번호)
orderEntryIdList, projectIdList 둘중 하나는 필수로 보내주셔야 합니다.
요청예시
curl -X 'PUT' \ 'https://dev-api.pod.shop//ac/api/external/order-status-test/delivery/progress/2531' \ -H 'accept: application/hal+json' \ -H 'Authorization: Bearer {token}' \ -H 'Content-Type: application/json' \ -d '{ "orderEntryIdList": [ 7757,7758 ], "projectIdList": [ 38812 ] }'
Shell
복사

4. 배송완료 상태로 변경

PUT /ac/api/external/order-status-test/delivery/completed/{orderId}

주문상품 단위로, 배송완료 상태로 변경합니다.

Body Parameter

Name
필수여부
Type
orderEntryIdList
Y
Array
주문 상품 아이디(entryId)
projectIdList
Y
Array
상품 번호 * channelProductId / designTemplateId / channelOptionVariantId 를 이용해 획득한 상품 고유 ID (장바구니번호)
orderEntryIdList, projectIdList 둘중 하나는 필수로 보내주셔야 합니다.
요청예시
curl -X 'PUT' \ 'https://dev-api.pod.shop//ac/api/external/order-status-test/delivery/completed/2531' \ -H 'accept: application/hal+json' \ -H 'Authorization: Bearer {token}' \ -H 'Content-Type: application/json' \ -d '{ "orderEntryIdList": [ 7757,7758 ], "projectIdList": [ 38812 ] }'
Shell
복사