SAP BRIM Customer Billing Overview

Version 1.0.0

List a customer's subscriptions, read their billing summary, and pull billing history.

1 workflow 1 source API 1 provider
View Spec View on GitHub BillingEnterpriseOrder-to-CashRevenue ManagementSAPSubscription ManagementUsage-Based PricingArazzoWorkflows

Provider

sap-brim-billing-and-revenue-innovation-management

Workflows

customer-billing-overview
Assemble a customer's subscriptions, billing summary, and billing history.
Lists subscriptions for a customer, reads the customer billing summary, and retrieves the billing history of the first returned subscription.
3 steps inputs: customerId, status outputs: billingHistory, outstandingBalance, paymentStatus, subscriptions
1
listCustomerSubscriptions
listCustomerSubscriptions
List all subscriptions belonging to the customer.
2
getBillingSummary
getCustomerBillingSummary
Read the customer-level billing summary across all subscriptions.
3
getFirstSubscriptionHistory
getSubscriptionBillingHistory
Pull the billing history for the first subscription in the list.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: SAP BRIM Customer Billing Overview
  summary: List a customer's subscriptions, read their billing summary, and pull billing history.
  description: >-
    Builds a consolidated billing picture for a single customer on SAP BRIM
    Subscription Billing. The workflow lists the customer's subscriptions, reads
    the customer-level billing summary for outstanding balances and next billing
    dates, and then pulls the billing history for the first subscription. Every
    step spells out its request inline so the flow can be read and executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: subscriptionBillingApi
  url: ../openapi/sap-brim-subscription-billing-openapi.yml
  type: openapi
workflows:
- workflowId: customer-billing-overview
  summary: Assemble a customer's subscriptions, billing summary, and billing history.
  description: >-
    Lists subscriptions for a customer, reads the customer billing summary, and
    retrieves the billing history of the first returned subscription.
  inputs:
    type: object
    required:
    - customerId
    properties:
      customerId:
        type: string
        description: Identifier of the customer to build the billing overview for.
      status:
        type: string
        description: Optional subscription status filter (e.g. ACTIVE).
  steps:
  - stepId: listCustomerSubscriptions
    description: List all subscriptions belonging to the customer.
    operationId: listCustomerSubscriptions
    parameters:
    - name: customerId
      in: path
      value: $inputs.customerId
    - name: status
      in: query
      value: $inputs.status
    - name: limit
      in: query
      value: 50
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      subscriptions: $response.body#/results
      firstSubscriptionId: $response.body#/results/0/subscriptionId
      totalCount: $response.body#/totalCount
  - stepId: getBillingSummary
    description: Read the customer-level billing summary across all subscriptions.
    operationId: getCustomerBillingSummary
    parameters:
    - name: customerId
      in: path
      value: $inputs.customerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      outstandingBalance: $response.body#/outstandingBalance
      nextBillingDate: $response.body#/nextBillingDate
      paymentStatus: $response.body#/paymentStatus
  - stepId: getFirstSubscriptionHistory
    description: Pull the billing history for the first subscription in the list.
    operationId: getSubscriptionBillingHistory
    parameters:
    - name: subscriptionId
      in: path
      value: $steps.listCustomerSubscriptions.outputs.firstSubscriptionId
    - name: limit
      in: query
      value: 10
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      billingHistory: $response.body#/results
  outputs:
    subscriptions: $steps.listCustomerSubscriptions.outputs.subscriptions
    outstandingBalance: $steps.getBillingSummary.outputs.outstandingBalance
    paymentStatus: $steps.getBillingSummary.outputs.paymentStatus
    billingHistory: $steps.getFirstSubscriptionHistory.outputs.billingHistory

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/sap-brim-billing-and-revenue-innovation-management-customer-billing-overview-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 email required.

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