Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Retrieves a collection of all scenarios folders for a team with a given ID. Returned folders are sorted by name in ascending order.
Successful response
const response = await fetch('https://eu1.make.com/api/v2/scenarios-folders?teamId=0', { method: 'GET', headers: {}, }); const data = await response.json();
{ "scenariosFolders": [ { "id": 0, "name": "text", "scenariosTotal": 0 } ] }