Structify teams API

The teams API from Structify — 2 operation(s) for teams.

Operations 2

GET /teams/files/{token} #
POST /teams/messages Handles Microsoft Teams Bot Framework webhook messages #

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/structify-teams-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

structify-teams-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: team@structify.ai
    name: Structify Team
  description: Every enterprise's data team.
  license:
    name: Discuss directly with founders for license.
    url: https://structify.ai
  title: Structify account Teams API
  version: 0.1.0
servers:
- description: Production server
  url: https://api.structify.ai
- description: Local server
  url: http://localhost:8080
security:
- api_key: []
- session_token: []
tags:
- name: teams
paths:
  /teams/files/{token}:
    get:
      operationId: download_teams_file
      parameters:
      - description: Signed download token for a Teams file.
        in: path
        name: token
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/octet-stream:
              schema:
                format: binary
                type: string
          description: Download Teams file.
        '404':
          description: File not found or token expired.
      tags:
      - teams
  /teams/messages:
    post:
      description: 'This endpoint receives activities from Teams when users message the bot.

        It handles message activities and invoke activities (for Adaptive Card actions).'
      operationId: teams_messages
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TeamsActivity'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamsEventResponse'
          description: Activity processed successfully
      summary: Handles Microsoft Teams Bot Framework webhook messages
      tags:
      - teams
components:
  schemas:
    TeamsActivityType:
      enum:
      - message
      - invoke
      - conversationUpdate
      - other
      type: string
    TeamsConversationAccount:
      properties:
        conversationType:
          type:
          - string
          - 'null'
        id:
          type: string
        isGroup:
          type:
          - boolean
          - 'null'
        name:
          type:
          - string
          - 'null'
        tenantId:
          type:
          - string
          - 'null'
      required:
      - id
      type: object
    TeamsActivity:
      properties:
        attachments:
          items:
            $ref: '#/components/schemas/TeamsAttachment'
          type:
          - array
          - 'null'
        channelId:
          type:
          - string
          - 'null'
        conversation:
          allOf:
          - $ref: '#/components/schemas/TeamsConversationAccount'
        from:
          allOf:
          - $ref: '#/components/schemas/TeamsChannelAccount'
        id:
          type:
          - string
          - 'null'
        membersAdded:
          items:
            $ref: '#/components/schemas/TeamsChannelAccount'
          type:
          - array
          - 'null'
        recipient:
          allOf:
          - $ref: '#/components/schemas/TeamsChannelAccount'
        replyToId:
          type:
          - string
          - 'null'
        serviceUrl:
          type:
          - string
          - 'null'
        text:
          type:
          - string
          - 'null'
        timestamp:
          type:
          - string
          - 'null'
        type:
          $ref: '#/components/schemas/TeamsActivityType'
        value: {}
      required:
      - type
      type: object
    TeamsChannelAccount:
      properties:
        aadObjectId:
          type:
          - string
          - 'null'
        id:
          type: string
        name:
          type:
          - string
          - 'null'
      required:
      - id
      type: object
    TeamsEventResponse:
      properties:
        message:
          type:
          - string
          - 'null'
        ok:
          type: boolean
      required:
      - ok
      type: object
    TeamsAttachment:
      properties:
        content: {}
        contentType:
          type: string
        contentUrl:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
      required:
      - contentType
      type: object
  securitySchemes:
    api_key:
      in: header
      name: api_key
      type: apiKey
    session_token:
      scheme: bearer
      type: http