Solved
I need a bit of help with retreiving the execution logs for a specific Adobe Fusion scenario.
Based on the documentation at https://developers.make.com/api-documentation/api-reference/scenarios/logs/get--scenarios--scenarioid--logs the following api call should do the trick. The api call works but the response is not what is expected. The response I am getting looks more like a scenario change audit.
Documentation
API Request (Get)
API Response
{
"scenarioLogs": [
"pg": {
"sortBy": "imtId",
"sortDir": "desc",
"last": "1632371803593_scenario.1229.auto.3cf2f332f74f43f1b2c4ae431cbedb5b",
"showLast": false,
"limit": 50
},
{
"imtId": "1632371744497_scenario.1229.auto.da518adcd14b4b64ac6358823ccb80ca",
"duration": 19979,
"operations": 10,
"transfer": 3942,
"organizationId": 21,
"teamId": 27,
"id": "da518adcd14b4b64ac6358823ccb80ca",
"type": "auto",
"authorId": null,
"instant": false,
"timestamp": "2021-09-23T04:35:44.497Z",
"status": 1
}
]
}
Actual (with sensitive data substituted)
API Request (Get)
API Response
{
"scenarioLogs": [
{
"imtId": "1111111111111_222222",
"id": "222222",
"executionId": "222222",
"detail": {
"author": {
"name": "Jo Developer",
"staff": false
}
},
"type": "modify",
"authorId": 12121,
"timestamp": "2025-02-25T21:08:05.605Z"
},
{
"imtId": "3333333333333_444444",
"id": "444444",
"executionId": "444444",
"detail": {
"author": {
"name": "Jo Developer",
"staff": false
}
},
"type": "start",
"authorId": 12121,
"timestamp": "2025-02-25T21:08:02.872Z"
}
],
"pg": {
"sortBy": "imtId",
"limit": 50,
"sortDir": "desc",
"offset": 0
}
}