Scenario
Returns a list of Scenarios that were initialized from any of the integrations.
GET /portal/api/bridge/scenarios HTTP/1.1
Host: <zone>.make.com
Accept: */*
List of Scenarios returned successfully.
{
"scenarios": [
{
"id": 1,
"name": "text",
"isActive": true,
"islocked": true,
"isPaused": true,
"usedPackages": [
"text"
],
"scheduling": {
"type": "immediately",
"interval": 1,
"date": "2025-07-08T20:03:33.308Z",
"between": [
"2025-07-08T20:03:33.308Z"
],
"time": "text",
"days": [
1
],
"months": [
1
],
"restrict": [
{
"time": [
"text"
],
"days": [
1
],
"months": [
1
]
}
]
},
"iswaiting": true,
"nextExec": "text"
}
]
}
Returns a Scenario by ID.
GET /portal/api/bridge/scenarios/{scenarioId} HTTP/1.1
Host: <zone>.make.com
Accept: */*
Scenario returned successfully.
{
"id": 1,
"name": "text",
"isActive": true,
"islocked": true,
"isPaused": true,
"usedPackages": [
"text"
],
"scheduling": {
"type": "immediately",
"interval": 1,
"date": "2025-07-08T20:03:33.308Z",
"between": [
"2025-07-08T20:03:33.308Z"
],
"time": "text",
"days": [
1
],
"months": [
1
],
"restrict": [
{
"time": [
"text"
],
"days": [
1
],
"months": [
1
]
}
]
},
"iswaiting": true,
"nextExec": "text"
}
Will create a flow and return the URL to update a Scenario.
POST /portal/api/bridge/scenarios/{scenarioId}/update HTTP/1.1
Host: <zone>.make.com
Content-Type: application/json
Accept: */*
Content-Length: 318
{
"teamId": 1,
"algorithm": "whiteboard",
"prefill": {
"hard": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"soft": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
},
"allowReusingComponents": true,
"allowCreatingComponents": true,
"autoActivate": true,
"autoFinalize": true,
"redirectUri": "text",
"scenario": {
"name": "text",
"enable": false,
"folderId": 1
}
}
Scenario update flow and URL returned successfully.
{
"publicUrl": "text",
"flow": {
"id": "text"
}
}
Will create a flow and return the URL to upgrade a Scenario.
POST /portal/api/bridge/scenarios/{scenarioId}/upgrade HTTP/1.1
Host: <zone>.make.com
Content-Type: application/json
Accept: */*
Content-Length: 318
{
"teamId": 1,
"algorithm": "whiteboard",
"prefill": {
"hard": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"soft": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
},
"allowReusingComponents": true,
"allowCreatingComponents": true,
"autoActivate": true,
"autoFinalize": true,
"redirectUri": "text",
"scenario": {
"name": "text",
"enable": false,
"folderId": 1
}
}
Scenario upgrade flow and URL returned successfully.
{
"publicUrl": "text",
"flow": {
"id": "text"
}
}
Activates a specific Scenario.
POST /portal/api/bridge/scenarios/{scenarioId}/activate HTTP/1.1
Host: <zone>.make.com
Accept: */*
Scenario activated successfully.
{
"scenarioId": 1
}
Deactivates a specific Scenario.
POST /portal/api/bridge/scenarios/{scenarioId}/deactivate HTTP/1.1
Host: <zone>.make.com
Accept: */*
Scenario deactivated successfully.
{
"scenarioId": 1
}
Runs a specific Scenario.
POST /portal/api/bridge/scenarios/{scenarioId}/run HTTP/1.1
Host: <zone>.make.com
Content-Type: application/json
Accept: */*
Content-Length: 65
{
"data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"responsive": true
}
Scenario run successfully.
{
"executionId": "text",
"statusUrl": "text",
"status": null,
"outputs": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
Returns the usage of a specific Scenario.
GET /portal/api/bridge/scenarios/{scenarioId}/usage HTTP/1.1
Host: <zone>.make.com
Accept: */*
Scenario usage returned successfully.
[
{
"date": "text",
"operations": 1,
"dataTransfer": 1
}
]
Returns a list of the logs for a specific Scenario.
GET /portal/api/bridge/scenarios/{scenarioId}/logs HTTP/1.1
Host: <zone>.make.com
Accept: */*
Scenario logs returned successfully.
[
{
"ANY_ADDITIONAL_PROPERTY": "anything"
}
]
Returns an execution log by scenario ID and execution ID.
GET /portal/api/bridge/scenarios/{scenarioId}/logs/{executionId} HTTP/1.1
Host: <zone>.make.com
Accept: */*
Scenario execution log returned successfully.
{
"ANY_ADDITIONAL_PROPERTY": "anything"
}
Returns the latest version of a blueprint of a specific Scenario.
GET /portal/api/bridge/scenarios/{scenarioId}/blueprint HTTP/1.1
Host: <zone>.make.com
Accept: */*
Scenario blueprint returned successfully.
{
"blueprint": null
}
Returns the list of blueprint versions for a specific Scenario.
GET /portal/api/bridge/scenarios/{scenarioId}/blueprints HTTP/1.1
Host: <zone>.make.com
Accept: */*
Scenario blueprint versions returned successfully.
{
"blueprints": []
}
Returns the interface of a specific Scenario.
GET /portal/api/bridge/scenarios/{scenarioId}/interface HTTP/1.1
Host: <zone>.make.com
Accept: */*
Scenario interface returned successfully.
{
"input": [],
"output": []
}