SAP Concur Expense · Arazzo Workflow

SAP Concur Update Report and Verify

Version 1.0.0

Read a draft report, update its header fields, then read it back to confirm.

1 workflow 1 source API 1 provider
View Spec View on GitHub Expense ManagementFinancial ManagementReceiptsReimbursementReportingSAPTravelArazzoWorkflows

Provider

sap-concur-expense

Workflows

update-report-verify
Read, update, and re-read an expense report header.
Reads the report header, applies header edits, and reads it back to confirm the changes were saved.
3 steps inputs: comment, name, purpose, reportID outputs: reportID, updatedName
1
getBefore
Read the report header to confirm it exists before editing.
2
updateReport
Apply the supplied header edits to the report.
3
getAfter
Re-read the report header to confirm the edits were saved.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: SAP Concur Update Report and Verify
  summary: Read a draft report, update its header fields, then read it back to confirm.
  description: >-
    Safely edits an expense report header. The workflow first reads the report
    to confirm it is still a draft, then applies the supplied name, comment, and
    purpose changes, and finally re-reads the report to confirm the new values
    were persisted. Because the update operation returns no content, the final
    read is what surfaces the applied changes. 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
workflows:
- workflowId: update-report-verify
  summary: Read, update, and re-read an expense report header.
  description: >-
    Reads the report header, applies header edits, and reads it back to confirm
    the changes were saved.
  inputs:
    type: object
    required:
    - reportID
    properties:
      reportID:
        type: string
        description: The expense report ID to update.
      name:
        type: string
        description: Updated report name.
      comment:
        type: string
        description: Updated comment.
      purpose:
        type: string
        description: Updated business purpose.
  steps:
  - stepId: getBefore
    description: Read the report header to confirm it exists before editing.
    operationId: getExpenseReport
    parameters:
    - name: id
      in: path
      value: $inputs.reportID
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      approvalStatusCode: $response.body#/ApprovalStatusCode
  - stepId: updateReport
    description: Apply the supplied header edits to the report.
    operationId: updateExpenseReport
    parameters:
    - name: id
      in: path
      value: $inputs.reportID
    requestBody:
      contentType: application/json
      payload:
        Name: $inputs.name
        Comment: $inputs.comment
        Purpose: $inputs.purpose
    successCriteria:
    - condition: $statusCode == 204
  - stepId: getAfter
    description: Re-read the report header to confirm the edits were saved.
    operationId: getExpenseReport
    parameters:
    - name: id
      in: path
      value: $inputs.reportID
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      name: $response.body#/Name
  outputs:
    reportID: $inputs.reportID
    updatedName: $steps.getAfter.outputs.name

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-update-report-verify-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.