Using API
Register a customer
curl -X 'POST' \
'https://v2.demo.sylius.com/api/v2/shop/customers' \
-H 'accept: application/ld+json' \
-H 'Content-Type: application/ld+json' \
-d '{
"firstName": "shop",
"lastName": "user",
"email": "[email protected]",
"password": "pa$$word",
"subscribedToNewsletter": true
}'
Log in to the shop
Basic Operations: Products, Carts, and Orders
Adding a product to the cart


Changing the Product Quantity in the Cart


Completing the Order
1. Add Customer Address


2. Select Shipping and Payment Methods

3. Complete the Order

Final Output
Last updated
Was this helpful?
