SAP Concur Expenses API

Manage individual expense entries

Operations 2

GET /expensereports/v4/reports/{reportId}/expenses SAP Concur Get Expenses for Report #
POST /expensereports/v4/reports/{reportId}/expenses SAP Concur Create Expense Entry #

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/concur-expenses-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

concur-expenses-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SAP Concur Expense Expense Reports Expenses API
  description: REST API for managing expense reports, entries, allocations, and attendees. Supports creating, updating, and submitting expense reports with receipt images, policy validation, and approval workflows.
  version: '4.0'
  contact:
    name: SAP Concur Developer Support
    url: https://developer.concur.com/
  x-generated-from: documentation
  x-last-validated: '2026-04-18'
servers:
- url: https://us.api.concursolutions.com
  description: US Production
- url: https://emea.api.concursolutions.com
  description: EMEA Production
security:
- bearerAuth: []
tags:
- name: Expenses
  description: Manage individual expense entries
paths:
  /expensereports/v4/reports/{reportId}/expenses:
    get:
      operationId: getExpenses
      summary: SAP Concur Get Expenses for Report
      description: Retrieves all expense entries for a specific report.
      tags:
      - Expenses
      parameters:
      - name: reportId
        in: path
        required: true
        description: The unique identifier of the expense report.
        schema:
          type: string
      responses:
        '200':
          description: Successfully retrieved expenses.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExpenseCollection'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createExpense
      summary: SAP Concur Create Expense Entry
      description: Creates a new expense entry within an expense report.
      tags:
      - Expenses
      parameters:
      - name: reportId
        in: path
        required: true
        description: The unique identifier of the expense report.
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExpenseCreate'
      responses:
        '201':
          description: Expense entry created successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Expense'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ExpenseCollection:
      type: object
      description: Collection of expense entries.
      properties:
        expenses:
          type: array
          items:
            $ref: '#/components/schemas/Expense'
    Expense:
      type: object
      description: An individual expense entry.
      properties:
        expenseId:
          type: string
          description: Unique identifier for the expense entry.
          example: '600456'
        expenseTypeName:
          type: string
          description: Name of the expense type.
          example: Airfare
        transactionDate:
          type: string
          format: date
          description: Date of the transaction.
          example: '2026-03-10'
        transactionAmount:
          type: number
          format: double
          description: Amount of the transaction.
          example: 875.5
        transactionCurrencyCode:
          type: string
          description: Currency code of the transaction.
          example: USD
        vendorName:
          type: string
          description: Name of the vendor.
          example: United Airlines
        description:
          type: string
          description: Description of the expense.
          example: Flight from SFO to JFK
        receiptRequired:
          type: boolean
          description: Whether a receipt is required.
          example: true
    ExpenseCreate:
      type: object
      description: Request body for creating an expense entry.
      required:
      - expenseTypeName
      - transactionDate
      - transactionAmount
      - transactionCurrencyCode
      properties:
        expenseTypeName:
          type: string
          description: Name of the expense type.
          example: Airfare
        transactionDate:
          type: string
          format: date
          description: Date of the transaction.
          example: '2026-03-10'
        transactionAmount:
          type: number
          format: double
          description: Amount of the transaction.
          example: 875.5
        transactionCurrencyCode:
          type: string
          description: Currency code.
          example: USD
        vendorName:
          type: string
          description: Name of the vendor.
          example: United Airlines
        description:
          type: string
          description: Description of the expense.
          example: Flight from SFO to JFK
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth 2.0 Bearer Token authentication.