SAP Business Intelligence Instances API

Manage scheduled report instances

Operations 3

GET /infostore/{objectId}/schedules SAP Business Intelligence List schedules for an object #
POST /infostore/{objectId}/schedules SAP Business Intelligence Schedule an object #
GET /infostore/{objectId}/instances SAP Business Intelligence List instances of an object #

Documentation

Specifications

Other Resources

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/sap-bi-instances-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

sap-bi-instances-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SAP Business Intelligence SAP BusinessObjects BI Platform REST Instances API
  description: RESTful web services for SAP BusinessObjects BI Platform administration, content management, scheduling, and reporting. Provides access to manage reports, users, folders, server infrastructure, and content within the BusinessObjects environment via the biprws endpoint.
  version: '1.0'
  contact:
    name: SAP Support
    url: https://support.sap.com/en/index.html
  termsOfService: https://www.sap.com/about/legal/terms-of-use.html
servers:
- url: https://{server}:{port}/biprws
  description: SAP BusinessObjects BI Platform Server
  variables:
    server:
      default: localhost
      description: BI Platform server hostname
    port:
      default: '6405'
      description: BI Platform server port
security:
- logonToken: []
tags:
- name: Instances
  description: Manage scheduled report instances
paths:
  /infostore/{objectId}/schedules:
    get:
      operationId: listSchedules
      summary: SAP Business Intelligence List schedules for an object
      description: Retrieve all schedules configured for a specific InfoObject.
      tags:
      - Instances
      parameters:
      - $ref: '#/components/parameters/objectId'
      responses:
        '200':
          description: List of schedules
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScheduleCollection'
        '401':
          description: Unauthorized
        '404':
          description: InfoObject not found
    post:
      operationId: scheduleObject
      summary: SAP Business Intelligence Schedule an object
      description: Create a new schedule for a report or program object.
      tags:
      - Instances
      parameters:
      - $ref: '#/components/parameters/objectId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateScheduleRequest'
      responses:
        '201':
          description: Schedule created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Schedule'
        '400':
          description: Invalid request
        '401':
          description: Unauthorized
        '404':
          description: InfoObject not found
  /infostore/{objectId}/instances:
    get:
      operationId: listInstances
      summary: SAP Business Intelligence List instances of an object
      description: Retrieve all report instances generated from scheduling or on-demand execution.
      tags:
      - Instances
      parameters:
      - $ref: '#/components/parameters/objectId'
      - $ref: '#/components/parameters/limitParam'
      - $ref: '#/components/parameters/offsetParam'
      responses:
        '200':
          description: List of instances
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InstanceCollection'
        '401':
          description: Unauthorized
        '404':
          description: InfoObject not found
components:
  schemas:
    Schedule:
      type: object
      properties:
        id:
          type: string
          description: Schedule unique identifier
        name:
          type: string
          description: Schedule name
        status:
          type: string
          enum:
          - Active
          - Paused
          - Completed
          description: Schedule status
        recurrenceType:
          type: string
          enum:
          - Once
          - Daily
          - Weekly
          - Monthly
          description: Recurrence pattern
        nextRunTime:
          type: string
          format: date-time
          description: Next scheduled run time
        format:
          type: string
          enum:
          - PDF
          - Excel
          - CSV
          - HTML
          description: Output format
    CreateScheduleRequest:
      type: object
      required:
      - name
      - recurrenceType
      properties:
        name:
          type: string
          description: Schedule name
        recurrenceType:
          type: string
          enum:
          - Once
          - Daily
          - Weekly
          - Monthly
          description: Recurrence pattern
        startTime:
          type: string
          format: date-time
          description: When the schedule starts
        endTime:
          type: string
          format: date-time
          description: When the schedule ends
        format:
          type: string
          enum:
          - PDF
          - Excel
          - CSV
          - HTML
          description: Output format
    InstanceCollection:
      type: object
      properties:
        instances:
          type: array
          items:
            $ref: '#/components/schemas/Instance'
        totalCount:
          type: integer
          description: Total number of instances
    Instance:
      type: object
      properties:
        id:
          type: integer
          description: Instance unique identifier
        name:
          type: string
          description: Instance title
        status:
          type: string
          enum:
          - Pending
          - Running
          - Success
          - Failed
          - Paused
          description: Execution status
        startTime:
          type: string
          format: date-time
          description: When the instance began running
        endTime:
          type: string
          format: date-time
          description: When the instance completed
        format:
          type: string
          description: Output format
    ScheduleCollection:
      type: object
      properties:
        schedules:
          type: array
          items:
            $ref: '#/components/schemas/Schedule'
  parameters:
    offsetParam:
      name: offset
      in: query
      description: Number of results to skip for pagination
      schema:
        type: integer
        default: 0
        minimum: 0
    limitParam:
      name: limit
      in: query
      description: Maximum number of results to return
      schema:
        type: integer
        default: 50
        minimum: 1
        maximum: 1000
    objectId:
      name: objectId
      in: path
      required: true
      description: InfoObject unique identifier (CUID or SI_ID)
      schema:
        type: string
  securitySchemes:
    logonToken:
      type: apiKey
      in: header
      name: X-SAP-LogonToken
      description: SAP BusinessObjects logon token obtained from the logon endpoint
externalDocs:
  description: SAP BusinessObjects BI Platform REST API Documentation
  url: https://help.sap.com/docs/SAP_BUSINESSOBJECTS_BUSINESS_INTELLIGENCE_PLATFORM