Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Retrieves a data structure with a given ID
The data structure ID. Get the dataStructureId with the list data structures endpoint.
1459
Successful response
const response = await fetch('https://eu1.make.com/api/v2/data-structures/{dataStructureId}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "dataStructure": { "id": 0, "teamId": 0, "name": "text", "strict": false, "spec": [ { "type": "boolean", "name": "text", "label": "text", "required": false, "default": false } ] } }