tessl.io InstallPolicy API

The InstallPolicy API from tessl.io — 2 operation(s) for installpolicy.

Operations 4

POST /v1/install/policy/evaluate Evaluate an install policy decision for a batch of plugin sources
GET /v1/orgs/{orgId}/install-policy
PUT /v1/orgs/{orgId}/install-policy
DELETE /v1/orgs/{orgId}/install-policy

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/tesslio-installpolicy-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

tesslio-installpolicy-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tessl Admin Keys Install Policy API
  version: 1.0.0
  description: Admin-scoped API keys for support tooling.
servers:
- url: https://api.tessl.io
tags:
- name: InstallPolicy
paths:
  /v1/install/policy/evaluate:
    post:
      summary: Evaluate an install policy decision for a batch of plugin sources
      tags:
      - InstallPolicy
      description: Returns a per-source allow/warn/block decision plus structured reasons. For users who belong to multiple orgs, the lowest-sorted org id wins and a warning is logged — set up an org-scoped API key to avoid the picker's arbitrary choice.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - sources
              properties:
                clientVersion:
                  type: string
                context:
                  type: object
                  properties:
                    isCi:
                      type: boolean
                    runId:
                      type: string
                    project:
                      type: object
                      properties:
                        tesslProjectId:
                          anyOf:
                          - type: string
                          - type: 'null'
                        workspaceSlug:
                          anyOf:
                          - maxLength: 200
                            type: string
                          - type: 'null'
                        manifestPath:
                          type: string
                        gitRemoteUrl:
                          anyOf:
                          - type: string
                          - type: 'null'
                        gitCommitSha:
                          anyOf:
                          - type: string
                          - type: 'null'
                acceptedWarnings:
                  type: boolean
                sources:
                  minItems: 0
                  maxItems: 200
                  type: array
                  items:
                    anyOf:
                    - type: object
                      required:
                      - id
                      - source
                      - tile
                      properties:
                        id:
                          type: string
                        source:
                          type: string
                          enum:
                          - registry
                        tile:
                          type: object
                          required:
                          - workspaceName
                          - tileName
                          properties:
                            workspaceName:
                              type: string
                            tileName:
                              type: string
                            version:
                              type: string
                    - type: object
                      required:
                      - id
                      - source
                      - url
                      properties:
                        id:
                          type: string
                        source:
                          type: string
                          enum:
                          - git
                        url:
                          type: string
                        branch:
                          type: string
                        subpath:
                          type: string
                        skills:
                          maxItems: 200
                          type: array
                          items:
                            type: string
                    - type: object
                      required:
                      - id
                      - source
                      - path
                      properties:
                        id:
                          type: string
                        source:
                          type: string
                          enum:
                          - file
                        path:
                          type: string
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                - links
                - data
                properties:
                  links:
                    type: object
                    required:
                    - self
                    properties:
                      self:
                        format: uri
                        type: string
                  data:
                    type: object
                    required:
                    - id
                    - type
                    - attributes
                    properties:
                      id:
                        type: string
                      type:
                        type: string
                        enum:
                        - install-policy-evaluation
                      attributes:
                        type: object
                        required:
                        - policyVersion
                        - orgId
                        - decisions
                        - additionalSources
                        properties:
                          policyVersion:
                            type: string
                          orgId:
                            anyOf:
                            - type: string
                            - type: 'null'
                          decisions:
                            type: array
                            items:
                              type: object
                              required:
                              - id
                              - decision
                              - reasons
                              - requiresInteractiveConfirmation
                              properties:
                                id:
                                  type: string
                                decision:
                                  anyOf:
                                  - type: string
                                    enum:
                                    - allow
                                  - type: string
                                    enum:
                                    - warn
                                  - type: string
                                    enum:
                                    - block
                                resolvedSource:
                                  anyOf:
                                  - type: object
                                    required:
                                    - id
                                    - source
                                    - tile
                                    properties:
                                      id:
                                        type: string
                                      source:
                                        type: string
                                        enum:
                                        - registry
                                      tile:
                                        type: object
                                        required:
                                        - workspaceName
                                        - tileName
                                        properties:
                                          workspaceName:
                                            type: string
                                          tileName:
                                            type: string
                                          version:
                                            type: string
                                  - type: object
                                    required:
                                    - id
                                    - source
                                    - url
                                    properties:
                                      id:
                                        type: string
                                      source:
                                        type: string
                                        enum:
                                        - git
                                      url:
                                        type: string
                                      branch:
                                        type: string
                                      subpath:
                                        type: string
                                  - type: object
                                    required:
                                    - id
                                    - source
                                    - path
                                    properties:
                                      id:
                                        type: string
                                      source:
                                        type: string
                                        enum:
                                        - file
                                      path:
                                        type: string
                                fallbackSource:
                                  anyOf:
                                  - type: object
                                    required:
                                    - id
                                    - source
                                    - tile
                                    properties:
                                      id:
                                        type: string
                                      source:
                                        type: string
                                        enum:
                                        - registry
                                      tile:
                                        type: object
                                        required:
                                        - workspaceName
                                        - tileName
                                        properties:
                                          workspaceName:
                                            type: string
                                          tileName:
                                            type: string
                                          version:
                                            type: string
                                  - type: object
                                    required:
                                    - id
                                    - source
                                    - url
                                    properties:
                                      id:
                                        type: string
                                      source:
                                        type: string
                                        enum:
                                        - git
                                      url:
                                        type: string
                                      branch:
                                        type: string
                                      subpath:
                                        type: string
                                  - type: object
                                    required:
                                    - id
                                    - source
                                    - path
                                    properties:
                                      id:
                                        type: string
                                      source:
                                        type: string
                                        enum:
                                        - file
                                      path:
                                        type: string
                                reasons:
                                  type: array
                                  items:
                                    anyOf:
                                    - type: object
                                      required:
                                      - kind
                                      - ruleId
                                      - severity
                                      - code
                                      - message
                                      - details
                                      properties:
                                        kind:
                                          type: string
                                          enum:
                                          - security-finding
                                        ruleId:
                                          type: string
                                        severity:
                                          anyOf:
                                          - type: string
                                            enum:
                                            - info
                                          - type: string
                                            enum:
                                            - warn
                                          - type: string
                                            enum:
                                            - error
                                        code:
                                          type: string
                                        message:
                                          type: string
                                        details:
                                          type: object
                                          required:
                                          - securityLevel
                                          - securityStatus
                                          - findings
                                          - registryUrl
                                          properties:
                                            securityLevel:
                                              anyOf:
                                              - enum:
                                                - LOW
                                                - MEDIUM
                                                - HIGH
                                                - CRITICAL
                                                type: string
                                              - type: 'null'
                                            securityStatus:
                                              anyOf:
                                              - type: string
                                                enum:
                                                - completed
                                              - type: string
                                                enum:
                                                - failed
                                              - type: string
                                                enum:
                                                - pending
                                              - type: 'null'
                                            findings:
                                              type: array
                                              items:
                                                type: object
                                                required:
                                                - severity
                                                - code
                                                - title
                                                - reasoning
                                                - issueDescription
                                                properties:
                                                  severity:
                                                    enum:
                                                    - LOW
                                                    - MEDIUM
                                                    - HIGH
                                                    - CRITICAL
                                                    type: string
                                                  code:
                                                    type: string
                                                  title:
                                                    type: string
                                                  reasoning:
                                                    type: string
                                                  issueDescription:
                                                    anyOf:
                                                    - type: string
                                                    - type: 'null'
                                            registryUrl:
                                              anyOf:
                                              - type: string
                                              - type: 'null'
                                    - type: object
                                      required:
                                      - kind
                                      - ruleId
                                      - severity
                                      - code
                                      - message
                                      - details
                                      properties:
                                        kind:
                                          type: string
                                          enum:
                                          - source-restricted
                                        ruleId:
                                          type: string
                                        severity:
                                          type: string
                                          enum:
                                          - error
                                        code:
                                          type: string
                                        message:
                                          type: string
                                        details:
                                          type: object
                                          properties:
                                            registryScope:
                                              anyOf:
                                              - type: string
                                                enum:
                                                - all
                                              - type: string
                                                enum:
                                                - tessl-and-org
                                              - type: string
                                                enum:
                                                - org-only
                                            deniedSourceKind:
                                              anyOf:
                                              - type: string
                                                enum:
                                                - registry
                                              - type: string
                                                enum:
                                                - git
                                            gitSource:
                                              type: object
                                              required:
                                              - host
                                              - path
                                              properties:
                                                host:
                                                  type: string
                                                path:
                                                  type: array
                                                  items:
                                                    type: string
                                    - type: object
                                      required:
                                      - kind
                                      - ruleId
                                      - severity
                                      - code
                                      - message
                                      - details
                                      properties:
                                        kind:
                                          type: string
                                          enum:
                                          - workspace-access
                                        ruleId:
                                          type: string
                                        severity:
                                          type: string
                                          enum:
                                          - error
                                        code:
                                          type: string
                                        message:
                                          type: string
                                        details:
                                          type: object
                                          properties: {}
                                    - type: object
                                      required:
                                      - kind
                                      - ruleId
                                      - severity
                                      - code
                                      - message
                                      - details
                                      properties:
                                        kind:
                                          type: string
                                          enum:
                                          - managed-project-unresolved
                                        ruleId:
                                          type: string
                                        severity:
                                          type: string
                                          enum:
                                          - error
                                        code:
                                          type: string
                                        message:
                                          type: string
                                        details:
                                          type: object
                                          properties: {}
                                    - type: object
                                      required:
                                      - kind
                                      - ruleId
                                      - severity
                                      - code
                                      - message
                                      - details
                                      properties:
                                        kind:
                                          type: string
                                          enum:
                                          - managed-project-required
                                        ruleId:
                                          type: string
                                        severity:
                                          anyOf:
                                          - type: string
                                            enum:
                                            - info
                                          - type: string
                                            enum:
                                            - error
                                        code:
                                          type: string
                                        message:
                                          type: string
                                        details:
                                          type: object
                                          required:
                                          - managedWorkspace
                                          - policyName
                                          - dependencyName
                                          - requiredVersion
                                          properties:
                                            managedWorkspace:
                                              type: string
                                            policyName:
                                              type: string
                                            dependencyName:
                                              type: string
                                            requiredVersion:
                                              type: string
                                    - type: object
                                      required:
                                      - kind
                                      - ruleId
                                      - severity
                                      - code
                                      - message
                                      - details
                                      properties:
                                        kind:
                                          type: string
                                          enum:
                                          - release-age
                                        ruleId:
                                          type: string
                                        severity:
                                          type: string
                                          enum:
                                          - error
                                        code:
                                          type: string
                                        message:
                                          type: string
                                        details:
                                          type: object
                                          required:
                                          - requestedVersion
                                          - requestedReleaseAgeInDays
                                          - minimumAgeInDays
                                          - fallbackVersion
                                          - fallbackPublishedAt
                                          properties:
                                            requestedVersion:
                                              type: string
                                            requestedReleaseAgeInDays:
                                              minimum: 0
                                              type: integer
                                            minimumAgeInDays:
                                              minimum: 0
                                              type: integer
                                            fallbackVersion:
                                              anyOf:
                                              - type: string
                                              - type: 'null'
                                            fallbackPublishedAt:
                                              anyOf:
                                              - type: string
                                              - type: 'null'
                                            fallbackSecurityReasons:
                                              type: array
                                              items:
                                                type: object
                                                required:
                                                - kind
                                                - ruleId
                                                - severity
                                                - code
                                                - message
                                                - details
                                                properties:
                                                  kind:
                                                    type: string
                                                    enum:
                                                    - security-finding
                                                  ruleId:
                                                    type: string
                                                  severity:
                                                    anyOf:
                                                    - type: string
                                                      enum:
                                                      - info
                                                    - type: string
                                                      enum:
                                                      - warn
                                                    - type: string
                                                      enum:
                                                      - error
                                                  code:
                                                    type: string
                                                  message:
                                                    type: string
                                                  details:
                                                    type: object
                                                    required:
                                                    - securityLevel
                                                    - securityStatus
                                                    - findings
                                                    - registryUrl
                                                    properties:
                                                      securityLevel:
                                                        anyOf:
                                                        - enum:
                                                          - LOW
                                                          - MEDIUM
                                                          - HIGH
                                                          - CRITICAL
                                                          type: string
                                                        - type: 'null'
                                                      securityStatus:
                                                        anyOf:
                                                        - type: string
                                                          enum:
                                                          - completed
                                                        - type: string
                                                          enum:
                                                          - failed
                                                        - type: string
                                                          enum:
                                                          - pending
                                                        - type: 'null'
                                                      findings:
                                                        type: array
                                                        items:
                                                          type: object
                                                          required:
                                                          - severity
                                                          - code
                                                          - title
                                                 

# --- truncated at 32 KB (89 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/tesslio/refs/heads/main/openapi/tesslio-installpolicy-api-openapi.yml