Delete Dataset

delete_dataset

Delete a dataset record by id. This will also delete any data associated with the dataset.

❗️

Warning

This operation cannot be undone. If you delete a dataset currently used in one or more maps, the dataset will be removed from those maps, possibly causing them to render incorrectly.

DELETE https://data-api.foursquare.com/v1/datasets/<uuid> HTTP/1.1

Response

A message indicating if deletion was successful.

{
  "message": "string"
}

Example

curl -X DELETE https://data-api.foursquare.com/v1/datasets/<uuid> \
  -H 'Authorization: Bearer <token>'