POST
/
get_order_status
curl --request POST \
  --url https://api.tryvox.co/functions/v1/get_order_status \
  --header 'Content-Type: application/json' \
  --data '{
  "args": {
    "order_id": "<string>"
  }
}'
{
  "result": {
    "order_id": "<string>",
    "status": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  }
}

주문 ID를 기반으로 현재 주문 상태를 조회하는 엔드포인트입니다. 주문의 현재 상태와 타임스탬프 정보를 반환합니다.

Body

application/json
주문 ID를 포함하는 JSON 페이로드
args
object
required

Response

200
application/json
주문 상태 조회 성공
result
object