Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Deletes data stores with given IDs and returns their IDs in the response. This endpoint allows deleting one or more data stores at once.
Successful response
const response = await fetch('https://eu1.make.com/api/v2/data-stores?teamId=0', { method: 'DELETE', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "ids": [ 137, 1399 ] }), }); const data = await response.json();
{ "dataStores": [ 0 ] }