curl --request GET \
--url http://localhost:3000/v1/equipment/carts{
"carts": [
{
"id": "011000001000020053",
"display_id": "C-0001",
"label": "Cart 01",
"type": "order",
"location": "<string>",
"order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"active_tote_id": "011000001000020053",
"totes": [
"011000001000020053"
],
"tote_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"total": 123
}Get a list of all carts with optional filtering by location or availability
curl --request GET \
--url http://localhost:3000/v1/equipment/carts{
"carts": [
{
"id": "011000001000020053",
"display_id": "C-0001",
"label": "Cart 01",
"type": "order",
"location": "<string>",
"order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"active_tote_id": "011000001000020053",
"totes": [
"011000001000020053"
],
"tote_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"total": 123
}