Add line item to order
documentedAdd a new lineitem to an existing order.
POST /orders/{order_id}/lineitemsOrdersno 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://api.printfection.com/v2/orders/{{$order_id}}/lineitems" \
-X POST \
-u "{{PRINTFECTION_API_KEY}}:" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"item_id": {{$item_id}}, "size_id": {{$size_id}}, "quantity": {{$quantity}}}'