Create cart
documentedAdd or update an ecommerce cart record.
POST /Ecommerce.svc/CartsCommerceno 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://integration.delivra.com/DelivraRESTServices/eCommerce.svc/Carts" \
-X POST \
-H "username: {{DELIVRA_USERNAME}}" \
-H "password: {{DELIVRA_PASSWORD}}" \
-H "listname: {{DELIVRA_LISTNAME}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"carts": [{"CartToken": "{{$cart_token}}", "eCommercePortal": "{{$ecommerce_portal}}", "ListName": "{{$listname}}", "MemberID": {{$member_id}}, "EmailAddress": "{{$email}}", "CartTotal": {{$cart_total}}, "RecoveryURL": "{{$recovery_url}}"}]}'