v3.3.1
about 2 years ago by Yoo Gippeum
문서 상태 변경 API 업데이트
원하는 단계로 자유롭게 반려할 수 있도록 문서 상태 변경 API가 업데이트 되었습니다. 사용 방법은 아래 예시를 참고해주세요.
// 3단계에서 1단계로 반려
{
"order": 3,
"destination_order": 1,
"command_type": "RT",
"comment": "return"
}
// 3단계에서 취소 상태로 변경
{
"order": 3,
"destination_order": 0,
"command_type": "RT",
"comment": "return"
}
// destination_order 미설정시 이전 단계로 반려 (3 -> 2)
{
"order": 3,
"command_type": "RT",
"comment": "return"
}