Sign in

Update cart lines

documented

Add/replace all cart line records for a cart.

POST /Ecommerce.svc/Carts/LinesCommerceno 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.delivra.com/v1/Ecommerce.svc/Carts/Lines" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"CartId": "{{$cart_id}}", "Lines": [{"ProductId": "{{$product_id}}", "Quantity": {{$quantity}}}], "Currency": "{{$currency}}", "Notes": "{{$notes}}"}'