Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Retrieves a collection of all data stores for a team with a given ID. Returned data stores are sorted by name in ascending order.
Successful response
const response = await fetch('https://eu1.make.com/api/v2/data-stores?teamId=0', { method: 'GET', headers: {}, }); const data = await response.json();
{ "dataStores": [ { "id": 0, "name": "text", "records": 0, "size": "text", "maxSize": "text", "teamId": 0, "datastructureId": 0 } ], "pg": { "last": "text", "showLast": false, "sortBy": "text", "sortDir": "text", "limit": 0, "offset": 0 } }