Emburse pre-approval-api-controller API

The pre-approval-api-controller API from Emburse — 9 operation(s) for pre-approval-api-controller.

Operations 9

POST /v1/preapproval-reports/{reportId}/return Return a pre-approval report #
POST /v1/preapproval-reports/{reportId}/reassign Reassign a pre-approval report #
POST /v1/preapproval-reports/{reportId}/approve Approve a pre-approval report #
GET /v1/preapproval-reports/itemType Get PALineItem Type information for expense Type #
GET /v1/preapproval-report-approved Get list of pre-approval reports that have been approved but not yet exported #
GET /v1/preapproval-report-approvals Get list of pre-approval reports for approval #
GET /v1/preapproval-report-approvals/{reportId} Get pre-approval report details #
GET /v1/preapproval-report-approvals/count Get count of pre-approval reports for approval #
DELETE /v1/preapproval-reports/{reportId} Delete a pre-approval #

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/emburse-pre-approval-api-controller-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

emburse-pre-approval-api-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PreApproval API Documentation Pre Approval API Controller API
  description: API for managing pre-approval reports and workflows
  contact:
    name: Chrome River Technologies
    url: https://www.chromeriver.com/contact
    email: info@chromeriver.com
  version: v1.0
servers:
- url: https://service.chromeriver.com
  description: PreApproval API Development Server
tags:
- name: pre-approval-api-controller
paths:
  /v1/preapproval-reports/{reportId}/return:
    post:
      tags:
      - pre-approval-api-controller
      summary: Return a pre-approval report
      description: This web service allows an external application to return the specified pre-approval report to the expense owner
      operationId: returnPreApproval
      parameters:
      - name: reportId
        in: path
        description: Report ID for report
        required: true
        schema:
          type: string
      - name: chain-id
        in: header
        description: Used for tracking the flow of the request
        required: true
        schema:
          type: string
      - name: logged-in-user-id
        in: header
        description: Unique ID for the approver logged in making request
        required: true
        schema:
          type: string
      - name: x-api-key
        in: header
        description: API key for Authentication
        required: true
        schema:
          type: string
      - name: customer-code
        in: header
        description: Unique customer identifier provided by Chrome River
        required: true
        schema:
          type: string
      responses:
        '400':
          description: Customer Code is invalid.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Customer Code is not authorized.
          content:
            application/json:
              schema:
                type: object
        '403':
          description: Logged in user is not authorized to return report or Logged in user does not exist.
          content:
            application/json:
              schema:
                type: object
        '503':
          description: Service unavailable.
          content:
            application/json:
              schema:
                type: object
  /v1/preapproval-reports/{reportId}/reassign:
    post:
      tags:
      - pre-approval-api-controller
      summary: Reassign a pre-approval report
      description: This web service allows an external application to reassign a specified pre-approval report to another approver for review
      operationId: reassignPreApproval
      parameters:
      - name: reportId
        in: path
        description: Report ID for report
        required: true
        schema:
          type: string
      - name: chain-id
        in: header
        description: Used for tracking the flow of the request
        required: true
        schema:
          type: string
      - name: logged-in-user-id
        in: header
        description: Unique ID for the approver logged in making request
        required: true
        schema:
          type: string
      - name: x-api-key
        in: header
        description: API key for Authentication
        required: true
        schema:
          type: string
      - name: customer-code
        in: header
        description: Unique customer identifier provided by Chrome River
        required: true
        schema:
          type: string
      responses:
        '400':
          description: Customer Code is invalid.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Customer Code is not authorized.  Cannot reassign PreApproval report.
          content:
            application/json:
              schema:
                type: object
        '403':
          description: Logged in user is not authorized to reassign PreApproval or Logged in user does not exist.
          content:
            application/json:
              schema:
                type: object
        '503':
          description: Service unavailable.
          content:
            application/json:
              schema:
                type: object
  /v1/preapproval-reports/{reportId}/approve:
    post:
      tags:
      - pre-approval-api-controller
      summary: Approve a pre-approval report
      description: This web service allows an external application to approve the specified pre-approval report
      operationId: approvePreApproval
      parameters:
      - name: reportId
        in: path
        description: Report ID for report
        required: true
        schema:
          type: string
      - name: chain-id
        in: header
        description: Used for tracking the flow of the request
        required: true
        schema:
          type: string
      - name: logged-in-user-id
        in: header
        description: Unique ID for the approver logged in making request
        required: true
        schema:
          type: string
      - name: x-api-key
        in: header
        description: API key for Authentication
        required: true
        schema:
          type: string
      - name: customer-code
        in: header
        description: Unique customer identifier provided by Chrome River
        required: true
        schema:
          type: string
      responses:
        '400':
          description: Customer Code is invalid.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Customer Code is not authorized.
          content:
            application/json:
              schema:
                type: object
        '403':
          description: Logged in user is not authorized to approve report or Logged in user does not exist.
          content:
            application/json:
              schema:
                type: object
        '503':
          description: Service unavailable.
          content:
            application/json:
              schema:
                type: object
  /v1/preapproval-reports/itemType:
    get:
      tags:
      - pre-approval-api-controller
      summary: Get PALineItem Type information for expense Type
      description: This web service allows an external application to get PALineItem type information by expense Type
      operationId: getPreApprovalLineItemType
      parameters:
      - name: chain-id
        in: header
        description: Used for tracking the flow of the request
        required: true
        schema:
          type: string
      - name: expense-item-type
        in: query
        description: Expense Type to get PALineItem type information
        required: true
        schema:
          type: string
      - name: x-api-key
        in: header
        description: API key for Authentication
        required: true
        schema:
          type: string
      - name: customer-code
        in: header
        description: Unique customer identifier provided by Chrome River
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Customer Code is invalid.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Customer Code is not authorized.
          content:
            application/json:
              schema:
                type: object
        '503':
          description: Service unavailable.
          content:
            application/json:
              schema:
                type: object
  /v1/preapproval-report-approved:
    get:
      tags:
      - pre-approval-api-controller
      summary: Get list of pre-approval reports that have been approved but not yet exported
      description: This web service allows an external application to get a list of pre-approval reports that have been approved but not yet exported
      operationId: getPreApprovalsApprovedDBPagination
      parameters:
      - name: chain-id
        in: header
        description: Used for tracking the flow of the request
        required: true
        schema:
          type: string
      - name: page
        in: query
        description: Page number for response pagination
        required: false
        schema:
          type: integer
          format: int32
          default: 1
      - name: page-size
        in: query
        description: Page size for response pagination
        required: false
        schema:
          type: integer
          format: int32
          default: 6
      - name: x-api-key
        in: header
        description: API key for Authentication
        required: true
        schema:
          type: string
      - name: customer-code
        in: header
        description: Unique customer identifier provided by Chrome River
        required: true
        schema:
          type: string
      responses:
        '400':
          description: Customer Code is invalid.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Customer Code is not authorized.
          content:
            application/json:
              schema:
                type: object
        '503':
          description: Service unavailable.
          content:
            application/json:
              schema:
                type: object
  /v1/preapproval-report-approvals:
    get:
      tags:
      - pre-approval-api-controller
      summary: Get list of pre-approval reports for approval
      description: This web service allows an external application to get a list of pre-approval reports awaiting approval by a user
      operationId: getPreApprovalApprovals
      parameters:
      - name: chain-id
        in: header
        description: Used for tracking the flow of the request
        required: true
        schema:
          type: string
      - name: logged-in-user-id
        in: header
        description: Unique ID for the approver logged in making request
        required: true
        schema:
          type: string
      - name: x-api-key
        in: header
        description: API key for Authentication
        required: true
        schema:
          type: string
      - name: customer-code
        in: header
        description: Unique customer identifier provided by Chrome River
        required: true
        schema:
          type: string
      responses:
        '400':
          description: Customer Code is invalid.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Customer Code is not authorized.
          content:
            application/json:
              schema:
                type: object
        '403':
          description: Logged in user does not exist.
          content:
            application/json:
              schema:
                type: object
        '503':
          description: Service unavailable.
          content:
            application/json:
              schema:
                type: object
  /v1/preapproval-report-approvals/{reportId}:
    get:
      tags:
      - pre-approval-api-controller
      summary: Get pre-approval report details
      description: This web service allows an external application to get the details of pre-approval report
      operationId: getPreApproval_1
      parameters:
      - name: reportId
        in: path
        description: Report ID for pre-approval report
        required: true
        schema:
          type: string
      - name: chain-id
        in: header
        description: Used for tracking the flow of the request
        required: true
        schema:
          type: string
      - name: logged-in-user-id
        in: header
        description: Unique ID for the approver logged in making request
        required: true
        schema:
          type: string
      - name: lockable
        in: query
        description: Indicates whether a report is lockable for 15 minutes or not
        required: false
        schema:
          type: boolean
      - name: x-api-key
        in: header
        description: API key for Authentication
        required: true
        schema:
          type: string
      - name: customer-code
        in: header
        description: Unique customer identifier provided by Chrome River
        required: true
        schema:
          type: string
      responses:
        '400':
          description: Customer Code is invalid.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Customer Code is not authorized.
          content:
            application/json:
              schema:
                type: object
        '403':
          description: Logged in user is not allowed to view details pre-approval report or Logged in user does not exist
          content:
            application/json:
              schema:
                type: object
        '404':
          description: Pre-Approval Report does not exist.
          content:
            application/json:
              schema:
                type: object
        '503':
          description: Service unavailable.
          content:
            application/json:
              schema:
                type: object
  /v1/preapproval-report-approvals/count:
    get:
      tags:
      - pre-approval-api-controller
      summary: Get count of pre-approval reports for approval
      description: This web service allows an external application to a count of pre-approval reports awaiting approval by auser
      operationId: getPreApprovalCount
      parameters:
      - name: chain-id
        in: header
        description: Used for tracking the flow of the request
        required: true
        schema:
          type: string
      - name: logged-in-user-id
        in: header
        description: Unique ID for the approver logged in making request
        required: true
        schema:
          type: string
      - name: x-api-key
        in: header
        description: API key for Authentication
        required: true
        schema:
          type: string
      - name: customer-code
        in: header
        description: Unique customer identifier provided by Chrome River
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Customer Code is invalid
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Customer Code is not authorized.
          content:
            application/json:
              schema:
                type: object
        '403':
          description: Logged in user does not exist.
          content:
            application/json:
              schema:
                type: object
        '503':
          description: Service unavailable.
          content:
            application/json:
              schema:
                type: object
  /v1/preapproval-reports/{reportId}:
    delete:
      tags:
      - pre-approval-api-controller
      summary: Delete a pre-approval
      description: This web service allows an external application to delete a pre-approval
      operationId: deletePreApproval
      parameters:
      - name: reportId
        in: path
        description: Report ID for pre-approval
        required: true
        schema:
          type: string
      - name: chain-id
        in: header
        description: Used for tracking the flow of the request
        required: true
        schema:
          type: string
      - name: expense-owner-id
        in: header
        description: Unique ID of the expense-owner
        required: true
        schema:
          type: string
      - name: x-api-key
        in: header
        description: API key for Authentication
        required: true
        schema:
          type: string
      - name: customer-code
        in: header
        description: Unique customer identifier provided by Chrome River
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Delete successful
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Customer Code is invalid
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Customer Code is not authorized
          content:
            application/json:
              schema:
                type: object
        '403':
          description: Forbidden operation
          content:
            application/json:
              schema:
                type: object
        '404':
          description: Pre-Approval does not exist
          content:
            application/json:
              schema:
                type: object
        '503':
          description: Service unavailable
          content:
            application/json:
              schema:
                type: object