ECI Solutions Drive API

The Drive API from ECI Solutions — 2 operation(s) for drive.

Operations 2

GET /api/v1/drives Get drives #
GET /api/v1/drives/{id}/items Get drive items #

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/eci-solutions-drive-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

eci-solutions-drive-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Office Integration Drive API
  description: 'This service provides APIs to enable building a single integration

    to access Drive, Email, and Calendar features in different productivity suites.'
  version: v1
security:
- Bearer: []
tags:
- name: Drive
paths:
  /api/v1/drives:
    get:
      tags:
      - Drive
      summary: Get drives
      description: 'Gets a list of drives available from the backing storage provider.

        - For Microsoft 365, returns a list of all OneDrive, Sharepoint, and Team Site drives.'
      operationId: GetDrives
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/GetDrivesResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/GetDrivesResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/GetDrivesResponse'
        '401':
          description: Unauthorized
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
  /api/v1/drives/{id}/items:
    get:
      tags:
      - Drive
      summary: Get drive items
      description: 'Gets a list of items in the drive, optionally filtered by the search criteria if provided.

        - For Microsoft 365, returns a list of items in the selected drive.'
      operationId: GetDriveItems
      parameters:
      - name: id
        in: path
        description: Drive id
        required: true
        schema:
          type: string
      - name: search
        in: query
        description: Search query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/DriveItemResponseListResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/DriveItemResponseListResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/DriveItemResponseListResponse'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          description: Unauthorized
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    ProblemDetails:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
      additionalProperties: {}
    DriveResponse:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: The ID of the drive
        name:
          type:
          - string
          - 'null'
          description: The name of the drive
        provider:
          type:
          - string
          - 'null'
          description: The provider of the drive
        providerType:
          type:
          - string
          - 'null'
          description: The provider type of the drive
        createdDate:
          type:
          - string
          - 'null'
          description: The created date of the drive
          format: date-time
        webUrl:
          type:
          - string
          - 'null'
          description: The WebUrl of the drive
      additionalProperties: false
      description: Custom Drive object
    GetDrivesResponse:
      type: object
      properties:
        value:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/DriveResponse'
          description: Response value, containing a list of drives
      additionalProperties: false
      description: Reponse for the GetDrivesRequest
    DriveItemResponse:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: Gets or sets the unique identifier of the drive item.
        driveId:
          type:
          - string
          - 'null'
          description: Gets or sets the unique identifier of the drive.
        name:
          type:
          - string
          - 'null'
          description: Gets or sets the name of the drive item.
        itemType:
          type:
          - string
          - 'null'
          description: Gets or sets the type of the item. This can be null.
        providerType:
          type:
          - string
          - 'null'
          description: Gets or sets the type of the provider. This can be null.
        createdDate:
          type:
          - string
          - 'null'
          description: Gets or sets the date and time when the drive item was created.
          format: date-time
        webUrl:
          type:
          - string
          - 'null'
          description: Gets or sets the web URL of the drive item. This can be null.
      additionalProperties: false
      description: Response for the GetDriveItemsRequest, representing a drive item
    DriveItemResponseListResponse:
      type: object
      properties:
        value:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/DriveItemResponse'
          description: Response value, containing a list of T items
        nextPageToken:
          type:
          - string
          - 'null'
          description: The next page token
      additionalProperties: false
      description: Response for a list of T items
  securitySchemes:
    Bearer:
      type: oauth2
      description: OAuth 2.0 Client Credentials Flow with API Users issued from Integration Engine Management Console
      flows:
        clientCredentials:
          tokenUrl: https://api-user.integrations.ecimanufacturing.com/oauth2/api-user/token
          scopes:
            openid: openid