SAP Concur Expense · Arazzo Workflow

SAP Concur Create Report From Policy

Version 1.0.0

Resolve the user's expense policy, then create a report under it and read it back.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Expense ManagementFinancial ManagementReceiptsReimbursementReportingSAPTravelArazzoWorkflows

Provider

sap-concur-expense

Workflows

create-report-from-policy
Discover a policy, create a report under it, and confirm the association.
Lists group configurations to find a policy ID, creates a report applying that policy, and reads the report back.
3 steps inputs: comment, reportName, userID outputs: policyID, reportID
1
listConfigs
List the user's expense group configurations to discover a policy.
2
createReport
Create the report applying the discovered policy ID.
3
getReport
Read the report back to confirm the policy association.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: SAP Concur Create Report From Policy
  summary: Resolve the user's expense policy, then create a report under it and read it back.
  description: >-
    Ensures a new report is created against a valid expense policy. The workflow
    lists the current user's expense group configurations to discover an
    applicable policy ID, creates a report header that applies that policy, and
    reads the report back to confirm the policy association. 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: expenseReportsApi
  url: ../openapi/sap-concur-expense-expense-reports-api-openapi.yml
  type: openapi
- name: groupConfigurationsApi
  url: ../openapi/sap-concur-expense-group-configurations-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-report-from-policy
  summary: Discover a policy, create a report under it, and confirm the association.
  description: >-
    Lists group configurations to find a policy ID, creates a report applying
    that policy, and reads the report back.
  inputs:
    type: object
    required:
    - reportName
    properties:
      reportName:
        type: string
        description: Name for the new expense report.
      userID:
        type: string
        description: Optional login ID to scope the group configuration lookup.
      comment:
        type: string
        description: Optional comment for the report header.
  steps:
  - stepId: listConfigs
    description: List the user's expense group configurations to discover a policy.
    operationId: listExpenseGroupConfigurations
    parameters:
    - name: userID
      in: query
      value: $inputs.userID
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      policyID: $response.body#/Items/0/PolicyID
      configID: $response.body#/Items/0/ID
  - stepId: createReport
    description: Create the report applying the discovered policy ID.
    operationId: createExpenseReport
    requestBody:
      contentType: application/json
      payload:
        Name: $inputs.reportName
        Comment: $inputs.comment
        PolicyID: $steps.listConfigs.outputs.policyID
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      reportID: $response.body#/ID
  - stepId: getReport
    description: Read the report back to confirm the policy association.
    operationId: getExpenseReport
    parameters:
    - name: id
      in: path
      value: $steps.createReport.outputs.reportID
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      policyID: $response.body#/PolicyID
  outputs:
    reportID: $steps.createReport.outputs.reportID
    policyID: $steps.getReport.outputs.policyID

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-concur-expense-create-report-from-policy-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.