# Delete a Travel Data Trip Deletes a trip and everything hanging off it: all of its activities — routing legs included — and their calculations. Responds with and an empty body. They are an immutable record of what was calculated, so deleting a trip does not remove the audit logs its calculations produced. Dashboards and reporting views are refreshed periodically, so a deleted trip can still appear in them until the next refresh. This cannot be undone — re-submit the trip to to restore it, which recalculates its emissions and creates new IDs. A trip you cannot access responds with and error code , and nothing is deleted. Endpoint: DELETE /v2/travel-data/trips/{id} Security: Bearer-Auth ## Path parameters: - `id` (string, required) The trip's (UUID) or your own — either identifies the trip. ## Response 401 fields (application/json): - `errors` (array) - `errors.code` (string, required) An application-specific error code, expressed as a string value. Enum: "field_validation_error", "invalid_params", "server_error", "not_authorized", "not_found", "invalid_methodology", "invalid_type", "client_not_found", "invalid_parent_client", "client_has_children", "parent_id_immutable", "travel_data_not_found" - `errors.detail` (string) A human-readable explanation specific to this occurrence of the problem. Like title, this field's value can be localized. - `errors.source` (object) An object containing references to the primary source of the error - `errors.source.id` (string) - `errors.source.attribute` (string, required) - `errors.source.model` (string) ## Response 404 fields (application/json): - `errors` (array) - `errors.code` (string, required) An application-specific error code, expressed as a string value. Enum: "field_validation_error", "invalid_params", "server_error", "not_authorized", "not_found", "invalid_methodology", "invalid_type", "client_not_found", "invalid_parent_client", "client_has_children", "parent_id_immutable", "travel_data_not_found" - `errors.detail` (string) A human-readable explanation specific to this occurrence of the problem. Like title, this field's value can be localized. - `errors.source` (object) An object containing references to the primary source of the error - `errors.source.id` (string) - `errors.source.attribute` (string, required) - `errors.source.model` (string)