Vantage · Arazzo Workflow

Vantage Create a Budget Alert for a New Cost Report

Version 1.0.0

Stand up a Cost Report and attach a budget alert that watches its spend.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub BudgetsCloud PricingCost ManagementCostsFinOpsArazzoWorkflows

Provider

vantage

Workflows

create-budget-alert-for-report
Create a Cost Report and a Budget Alert that monitors it.
Creates a Cost Report, creates a Budget Alert referencing that report's token, and fetches the alert back by token.
3 steps inputs: apiToken, budget, filter, period, title, workspaceToken outputs: budgetAlertToken, costReportToken
1
createReport
Create the Cost Report the budget alert will monitor.
2
createBudgetAlert
Create a Budget Alert that watches the new Cost Report against the supplied budget and period.
3
getBudgetAlert
Read the Budget Alert back by token to confirm it was registered.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Vantage Create a Budget Alert for a New Cost Report
  summary: Stand up a Cost Report and attach a budget alert that watches its spend.
  description: >-
    A common Vantage governance pattern. The workflow creates a Cost Report
    scoped to a VQL filter, attaches a Budget Alert to that report with a budget
    amount and period, and reads the alert back to confirm it was registered
    against the report. Every step spells out its request inline — including the
    Bearer token — so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: budgetAlertsApi
  url: ../openapi/vantage-budget-alerts-api-openapi.yml
  type: openapi
- name: costReportsApi
  url: ../openapi/vantage-cost-reports-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-budget-alert-for-report
  summary: Create a Cost Report and a Budget Alert that monitors it.
  description: >-
    Creates a Cost Report, creates a Budget Alert referencing that report's
    token, and fetches the alert back by token.
  inputs:
    type: object
    required:
    - apiToken
    - title
    - filter
    - workspaceToken
    - budget
    - period
    properties:
      apiToken:
        type: string
        description: Vantage API token used as the Bearer credential.
      title:
        type: string
        description: Human-readable title for the new Cost Report.
      filter:
        type: string
        description: A VQL filter expression scoping the Cost Report.
      workspaceToken:
        type: string
        description: The workspace token the Cost Report belongs to.
      budget:
        type: string
        description: The budget amount for the alert.
      period:
        type: string
        description: The budget period (e.g. monthly).
  steps:
  - stepId: createReport
    description: Create the Cost Report the budget alert will monitor.
    operationId: createCostReport
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.title
        filter: $inputs.filter
        workspace_token: $inputs.workspaceToken
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      costReportToken: $response.body#/token
  - stepId: createBudgetAlert
    description: >-
      Create a Budget Alert that watches the new Cost Report against the supplied
      budget and period.
    operationId: createBudgetAlert
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    requestBody:
      contentType: application/json
      payload:
        cost_report_token: $steps.createReport.outputs.costReportToken
        budget: $inputs.budget
        period: $inputs.period
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      budgetAlertToken: $response.body#/token
  - stepId: getBudgetAlert
    description: Read the Budget Alert back by token to confirm it was registered.
    operationId: getBudgetAlert
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    - name: budget_alert_token
      in: path
      value: $steps.createBudgetAlert.outputs.budgetAlertToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      budget: $response.body#/budget
      period: $response.body#/period
  outputs:
    costReportToken: $steps.createReport.outputs.costReportToken
    budgetAlertToken: $steps.createBudgetAlert.outputs.budgetAlertToken

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/vantage-create-budget-alert-for-report-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.