Vantage · Arazzo Workflow

Vantage Set Up a Financial Commitment Report and Segment

Version 1.0.0

Create a Financial Commitment Report and a cost allocation Segment in the same workspace.

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

Provider

vantage

Workflows

financial-commitment-report-setup
Create a Financial Commitment Report and a cost allocation Segment.
Creates a Financial Commitment Report, fetches it back by token, and creates a Segment in the same workspace.
3 steps inputs: apiToken, reportTitle, segmentFilter, segmentPriority, segmentTitle, workspaceToken outputs: commitmentReportToken, segmentToken
1
createCommitmentReport
Create a Financial Commitment Report in the supplied workspace.
2
getCommitmentReport
Read the Financial Commitment Report back by token to confirm it persisted.
3
createSegment
Create a cost allocation Segment in the same workspace to attribute committed spend.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Vantage Set Up a Financial Commitment Report and Segment
  summary: Create a Financial Commitment Report and a cost allocation Segment in the same workspace.
  description: >-
    A Vantage commitment-tracking pattern. The workflow creates a Financial
    Commitment Report for reservations and savings plans, reads it back by token
    to confirm it persisted, and then creates a cost allocation Segment in the
    same workspace so committed spend can be attributed. 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: financialCommitmentReportsApi
  url: ../openapi/vantage-financial-commitment-reports-api-openapi.yml
  type: openapi
- name: segmentsApi
  url: ../openapi/vantage-segments-api-openapi.yml
  type: openapi
workflows:
- workflowId: financial-commitment-report-setup
  summary: Create a Financial Commitment Report and a cost allocation Segment.
  description: >-
    Creates a Financial Commitment Report, fetches it back by token, and creates
    a Segment in the same workspace.
  inputs:
    type: object
    required:
    - apiToken
    - reportTitle
    - workspaceToken
    - segmentTitle
    - segmentFilter
    properties:
      apiToken:
        type: string
        description: Vantage API token used as the Bearer credential.
      reportTitle:
        type: string
        description: Title for the new Financial Commitment Report.
      workspaceToken:
        type: string
        description: The workspace token the Report and Segment belong to.
      segmentTitle:
        type: string
        description: Title for the new cost allocation Segment.
      segmentFilter:
        type: string
        description: A VQL filter expression scoping the Segment.
      segmentPriority:
        type: integer
        description: The priority of the Segment relative to others.
  steps:
  - stepId: createCommitmentReport
    description: Create a Financial Commitment Report in the supplied workspace.
    operationId: createFinancialCommitmentReport
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.reportTitle
        workspace_token: $inputs.workspaceToken
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      commitmentReportToken: $response.body#/token
  - stepId: getCommitmentReport
    description: Read the Financial Commitment Report back by token to confirm it persisted.
    operationId: getFinancialCommitmentReport
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    - name: financial_commitment_report_token
      in: path
      value: $steps.createCommitmentReport.outputs.commitmentReportToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      title: $response.body#/title
  - stepId: createSegment
    description: >-
      Create a cost allocation Segment in the same workspace to attribute
      committed spend.
    operationId: createSegment
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.segmentTitle
        filter: $inputs.segmentFilter
        priority: $inputs.segmentPriority
        workspace_token: $inputs.workspaceToken
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      segmentToken: $response.body#/token
  outputs:
    commitmentReportToken: $steps.createCommitmentReport.outputs.commitmentReportToken
    segmentToken: $steps.createSegment.outputs.segmentToken

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-financial-commitment-report-setup-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.