Skip to content

Remove an item

DELETE /api/bookings/v4/{id}/items/{item_id}

Removes an item from a booking. This action cannot be undone. Multipickup bookings reject item changes with 400.

ParameterTypeRequiredDescription
idintegerYesThe booking ID
item_idintegerYesThe item ID to remove
Terminal window
curl -X DELETE \
-H "Api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
https://www.transdirect.com.au/api/bookings/v4/123456/items/1

A successful deletion returns 204 No Content with an empty body.

Status codeMeaning
400Multipickup booking — items cannot be changed
401Unauthorised
404Booking or item not found
500Server error while removing the item