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