Cart

Create cart

POST https://api.voordemensen.nl/v1/:client_name/cart/

A POST HTTP request is sent. A shopping cart is created. The Location header is used to link to the newly created resource (the cart) in order for the client to be able to access it without querying anew. Save the cart_id to the session if you want to access it again.

Path Parameters

{"cart_id":"4DSMDACyPo8wLr8vFnTVUR6HzWC5tWGi"}

Put seat(s) in the cart

POST https://api.voordemensen.nl/v1/:client_name/cart/:cart_id

A POST HTTP request is used to put a seat in the cart. The event_id, number of tickets and discount_id is sent as part of the request body. The reply contains all cart data in order not to force the client to query again for it.

Path Parameters

Request Body

[{
	"seat_id": "azL0bNZdD1",
	"seat_row_nr": "0",
	"seat_nr": "0",
	"pmp_name": null,
	"event_id": 95,
	"event_name": "VoordeMensen Demo Event",
	"location_name": "Bellevue Grote Zaal",
	"event_date": "01-04-2022",
	"event_view_end": "00-00-0000",
	"event_time": "20:30",
	"recommand": [],
	"numberoftickets": 1,
	"seat_price": "24.50",
	"category_name": "standaard",
	"discount_id": "2ePdA8q3BN",
	"discount_name": "Standaard"
}, {
	"totalprice": "24.50"
}]

Get items in cart

GET https://api.voordemensen.nl/v1/:client_name/cart/:cart_id

Get a list of items in the cart

Path Parameters

[{
	"seat_id": "azL0bNZdD1",
	"seat_row_nr": "0",
	"seat_nr": "0",
	"pmp_name": null,
	"event_id": 95,
	"event_name": "VoordeMensen Demo Event",
	"location_name": "Bellevue Grote Zaal",
	"event_date": "01-04-2022",
	"event_view_end": "00-00-0000",
	"event_time": "20:30",
	"recommand": [],
	"numberoftickets": 1,
	"seat_price": "24.50",
	"category_name": "standaard",
	"discount_id": "2ePdA8q3BN",
	"discount_name": "Standaard"
}, {
	"totalprice": "24.50"
}]

The response is a list of items in the cart, followed by the calculated total price of the cart.

If the Recommendation Extension is activated the response contains an array of other events the user can visit before or after this event, links to those events and even the 🚲cycle-distance between venues.

Delete seat from cart

DELETE https://api.voordemensen.nl/v1/:client_name/cart/:cart_id/:seat_id

Remove a seat from the cart

Path Parameters

Last updated