Delete a dataset

  • Permanently delete a dataset by sending an HTTPDELETE request to the specified endpoint with the dataset's ID.

  • Include theX-Goog-User-Project header to specify the project and anAuthorization header with a valid bearer token for authentication.

  • Upon successful deletion, an empty JSON response ({}) is returned, indicating the dataset has been removed.

Delete a dataset by sending an HTTPDELETE request to thedelete dataset endpoint thatalso includes the ID of the dataset:

https://mapsplatformdatasets.googleapis.com/v1/projects/PROJECT_NUMBER_OR_ID/datasets/DATASET_ID

For example:

curl -X DELETE \-H 'X-Goog-User-Project:PROJECT_NUMBER_OR_ID' \-H "Authorization: Bearer $TOKEN" \"https://mapsplatformdatasets.googleapis.com/v1/projects/PROJECT_NUMBER_OR_ID/datasets/f57074a0-a8b6-403e-9df1-e9fc46"

This request returns the following response:

{}

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-11-21 UTC.