Create order question
documentedCreate an order question.
POST /3dCartWebAPI/v1/OrderQuestionsOrdersno 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/OrderQuestions" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "SecureURL: {{$store_secure_url}}" \
-H "PrivateKey: {{SHIFT4SHOP_API_KEY}}" \
-H "Token: {{SHIFT4SHOP_TOKEN}}" \
-d '{"OrderId": "{{$order_id}}", "Subject": "{{$subject}}", "Question": "{{$question}}", "CustomerName": "{{$customer_name}}", "CustomerEmail": "{{$customer_email}}"}'