Required scopes:
scenarios:read
Retrieves all available properties of a scenario with a given ID. The returned details do not include a scenario blueprint. If you want to get a scenario blueprint, refer to the Get scenario blueprint endpoint.
Last updated 7 days ago
The ID of the scenario. You can get the scenarioId with the List scenarios API call.
112
Successful response
const response = await fetch('https://eu1.make.com/api/v2/scenarios/{scenarioId}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "scenario": { "id": 0, "name": "text", "teamId": 0, "hookId": 0, "deviceId": 0, "deviceScope": "text", "description": "text", "folderId": 0, "isinvalid": false, "isActive": false, "islocked": false, "isPaused": false, "usedPackages": [ "text" ], "lastEdit": "2025-01-22T00:42:03.843Z", "scheduling": { "type": "text", "interval": 0 }, "iswaiting": false, "dlqCount": 0, "createdByUser": { "id": 0, "name": "text", "email": "text" }, "updatedByUser": { "id": 0, "name": "text", "email": "text" }, "nextExec": "2025-01-22T00:42:03.843Z", "created": "2025-01-22T00:42:03.843Z", "scenarioVersion": 0, "moduleSequenceId": 0 } }