Update order question
documentedUpdate an order question.
PUT /3dCartWebAPI/v1/OrderQuestions/{questionId}Ordersno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://apirest.3dcart.com/3dCartWebAPI/v1/Orders/{{$order_id}}/Questions/{{$question_id}}" \
-X PUT \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "SecureURL: {{$store_secure_url}}" \
-H "PrivateKey: {{SHIFT4SHOP_PRIVATE_KEY}}" \
-H "Token: {{SHIFT4SHOP_TOKEN}}" \
-d '{"QuestionTitle": "{{$title}}", "QuestionAnswer": "{{$answer}}", "QuestionType": "{{$type}}", "QuestionCheckoutStep": {{$checkout_step}}, "QuestionSorting": {{$sorting}}, "QuestionDiscountGroup": {{$discount_group}}}'