AI-generated Key Takeaways
-
Permanently delete a dataset by sending an HTTP
DELETE
request to the specified endpoint with the dataset's ID. -
Include the
X-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 HTTP DELETE
request to the
delete dataset endpoint that
also 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:
{}