Scenarios > Consumptions

Scenario consumption refers to information about the number of centicredits, operations, and data transfer used by a scenario. The following endpoints retrieve information about your scenario consumption during your current restart period. You can view the end of your current restart period in your dashboard under the Usage reset field.

List scenario consumptions

get

Retrieves a list of scenarios and their current consumption. Make counts the number of consumed centicredits, operations, and transferred data according to your reset period.

If you have a monthly reset period, the response contains a list of scenarios that consumed at least one hundred centicredits (one operation) in the current reset period with their consumption and data transfer..

If you have a yearly reset period, the response contains a list of scenarios that consumed at least one hundred centicredits (one operation) in the last 60 days, or from the last reset if that period is shorter than 60 days.

60 days after the reset the scenario consumptions turn into running totals over the last 60 days.

For example, let's assume that you have a set of scenarios that consume 100000 centicredits (1000 operations) every day. On the 61st day from your last reset, you turn off a scenario that consumes 20000 centicredits (200 operations) every day, reducing your consumption to 80000 centicredits (800 operations) per day.

If you would have the yearly reset period and you would be tracking your scenario consumptions, you would get the following data:

Day

Consumptions

Delta

1

1000

2

2000

1000

3

3000

1000

...

60

60000

1000

61

59800

-200

62

59600

-200

The negative difference between scenario consumptions on the 60th and 61st day happens because on the 61st day, the endpoint doesn't collect data from the first day anymore. Your scenario consumptions contain a total over the time period from the second day until the 61st day.

For billing, Make uses a different system which ensures accurate billing.

Check the parameter lastReset in the response for the timestamp of the start of your current reset period. You can also view the end of your current restart period in your dashboard in the Usage reset field.

Set the organizationId or teamId parameters to limit the results to a specific organization or team.

Authorizations
Query parameters
teamIdintegerRequired

The ID of the team.

Example: 1
organizationIdintegerOptional

The ID of the organization.

Example: 11
Responses
200

Retrieved a list of Consumptions

application/json
get
GET /api/v2/scenarios/consumptions HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
200

Retrieved a list of Consumptions

{
  "scenarioConsumptions": [
    {
      "scenarioId": 1128,
      "operations": 9,
      "transfer": 135
    },
    {
      "scenarioId": 424,
      "operations": 5,
      "transfer": 143,
      "centicredits": 500
    }
  ],
  "lastReset": "2021-09-10T08:53:25.292Z"
}