SAP BI Tools Resources API

Browse and manage resources within the SAP Analytics Cloud file repository including stories, models, and folders.

Operations 1

GET /api/v1/Resources SAP BI Tools List resources #

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-tools-resources-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-tools-resources-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SAP BI Tools SAP Analytics Cloud Resources API
  description: RESTful API for SAP Analytics Cloud enabling programmatic access to system data stored on an SAP Analytics Cloud tenant. The API provides endpoints for managing stories, models, users, teams, calendars, and other resources. It supports SCIM 2.0 for user provisioning, OData for data access, and standard REST patterns for content management. Authentication uses OAuth 2.0 with SAML bearer assertion or authorization code grant flows.
  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://{tenant}.{datacenter}.sapanalytics.cloud
  description: SAP Analytics Cloud Tenant
  variables:
    tenant:
      default: my-tenant
      description: The SAP Analytics Cloud tenant name
    datacenter:
      default: eu1
      description: The data center region (e.g., eu1, eu10, us1, us10, ap1)
security:
- oauth2: []
tags:
- name: Resources
  description: Browse and manage resources within the SAP Analytics Cloud file repository including stories, models, and folders.
paths:
  /api/v1/Resources:
    get:
      operationId: listResources
      summary: SAP BI Tools List resources
      description: Retrieves a list of resources from the SAP Analytics Cloud file repository. Resources include stories, models, folders, and other artifacts. Supports filtering by resource type and pagination.
      tags:
      - Resources
      parameters:
      - name: resourceType
        in: query
        description: Filter resources by type (e.g., STORY, MODEL, FOLDER)
        schema:
          type: string
      - name: resourceSubType
        in: query
        description: Filter resources by sub-type
        schema:
          type: string
      - $ref: '#/components/parameters/TopParam'
      - $ref: '#/components/parameters/SkipParam'
      responses:
        '200':
          description: Successfully retrieved list of resources
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Resource'
        '401':
          description: Unauthorized - invalid or missing authentication token
components:
  schemas:
    Resource:
      type: object
      description: Represents a resource in the SAP Analytics Cloud file repository. Resources can be stories, models, folders, or other content types.
      properties:
        id:
          type: string
          description: The unique identifier of the resource
        name:
          type: string
          description: The display name of the resource
        description:
          type: string
          description: A text description of the resource
        resourceType:
          type: string
          description: The type of resource (e.g., STORY, MODEL, FOLDER)
        resourceSubType:
          type: string
          description: The sub-type of the resource
        createdTime:
          type: string
          format: date-time
          description: The timestamp when the resource was created
        modifiedTime:
          type: string
          format: date-time
          description: The timestamp when the resource was last modified
        parentId:
          type: string
          description: The ID of the parent folder
  parameters:
    TopParam:
      name: $top
      in: query
      description: Maximum number of records to return
      schema:
        type: integer
    SkipParam:
      name: $skip
      in: query
      description: Number of records to skip for pagination
      schema:
        type: integer
  securitySchemes:
    oauth2:
      type: oauth2
      description: OAuth 2.0 authentication using SAML bearer assertion or authorization code grant flow.
      flows:
        authorizationCode:
          authorizationUrl: https://{tenant}.authentication.{region}.hana.ondemand.com/oauth/authorize
          tokenUrl: https://{tenant}.authentication.{region}.hana.ondemand.com/oauth/token
          scopes: {}
externalDocs:
  description: SAP Analytics Cloud REST API Documentation
  url: https://help.sap.com/docs/SAP_ANALYTICS_CLOUD/14cac91febef464dbb1efce20e3f1613/3ccfab3348dd407db089accb66cff9a2.html