Menu

Cart

To create update or delete Carts you can use the endpoints below
The methods allowed per endpoint are specified in the documentation of the endpoint.

Endpoints

Add Configuration to Cart

This endpoint adds Configuration to Cart

POST /carts

Get All Carts

This endpoint gets all the carts.

GET /companies

Get Cart by ID

This endpoint can get the cart by id.

GET /carts/{id}

Get Default Cart

This endpoint can get the default cart.

GET /carts/default

Create new Cart

This endpoint creates a new cart.

POST /carts/new

Order the Shopping Cart

This endpoint orders the Shopping Cart.

POST /carts

Delete Cart by ID

This endpoint deletes the Cart by ID.

DELETE /carts/{id}

Delete Default Cart

This endpoint deletes the default cart.

DELETE /carts/default

Delete Cart Line by IDs

This endpoint deletes the Cart lines by ID.

DELETE /carts/{cart_id}/{line_id}

Menu