Sign in

Add line item to order

documented

Add a new lineitem to an existing order.

POST /orders/{order_id}/lineitemsOrdersno implementation yet0 runs
No 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}}}'
Add line item to order · printfection · OpenIntegrations