Expand my Community achievements bar.

Fusion Scenario Operations Counter

Avatar

Level 2

Hello Friends,

 

I remain very perplexed as to why Adobe has not given us a way to access scenario operations from within a scenario. Considering the new pricing model that is centric to operation counts...

 

This has been a basic feature over at Make.com for quite a while now, in the form of a system variable called "Operations consumed". Which can be used to track and monitor the number of operations a scenario has consumed dynamically, during a scenario run. This variable is incredibly handy in a world where we are basically charged per operation consumed.

 

Adobe, please give us the features we need to work efficiently and responsibly.

 

Wes-

 

1 Reply

Avatar

Level 5

Hi @wesleydenaro,

 

I have just checked and there is already an option to see scenario operations in the out of the box dashboard, and you can check per day, week or month

 Scenario_operations.png

I have checked the network tab and this is how you can get this information 
https://app-eu.workfrontfusion.com/api/v2/operations/organization/ORG_ID/team/TEAM_ID?groupBy=scenar...

 

maybe you can also adapt the dates to your need so you get operations for a full month

 

This is an example of the response

{
    "timestamp": "Wed, 26 Nov 2025 11:00:12 GMT",
    "data": [
        {
            "_id": "2025-11-20T00:00:00.000Z",
            "scenario": [
                {
                    "id": SCENARIO_ID1,
                    "operations": 2
                }
            ]
        },
        {
            "_id": "2025-11-25T00:00:00.000Z",
            "scenario": [
                {
                    "id": SCENARIO_ID2,
                    "operations": 4
                }
            ]
        }
    ]
}

 

Hopefully this helps.

 

Best regards,
Ivan