curl --request GET \
--url http://localhost:3091/v1/api/tracking/{bookingId}/location \
--header 'Authorization: Bearer <token>'{
"id": 123,
"bookingId": 123,
"carrierId": 123,
"latitude": 123,
"longitude": 123,
"accuracy": 123,
"status": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}Returns the most recent GPS position for a booking
curl --request GET \
--url http://localhost:3091/v1/api/tracking/{bookingId}/location \
--header 'Authorization: Bearer <token>'{
"id": 123,
"bookingId": 123,
"carrierId": 123,
"latitude": 123,
"longitude": 123,
"accuracy": 123,
"status": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}JWT access token from POST /v1/api/auth/login