Windmill oidc API

The oidc API from Windmill — 1 operation(s) for oidc.

OpenAPI Specification

windmill-oidc-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  version: 1.694.0
  title: Windmill admin oidc API
  contact:
    name: Windmill Team
    email: contact@windmill.dev
    url: https://windmill.dev
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  x-logo:
    url: https://windmill.dev/img/windmill.svg
servers:
- url: /api
security:
- bearerAuth: []
- cookieAuth: []
tags:
- name: oidc
paths:
  /w/{workspace}/oidc/token/{audience}:
    post:
      summary: Get OIDC Token (ee Only)
      operationId: getOidcToken
      tags:
      - oidc
      parameters:
      - $ref: '#/components/parameters/WorkspaceId'
      - name: audience
        in: path
        required: true
        schema:
          type: string
      - name: expires_in
        in: query
        schema:
          type: number
      responses:
        '200':
          description: new oidc token
          content:
            text/plain:
              schema:
                type: string
components:
  parameters:
    WorkspaceId:
      name: workspace
      in: path
      required: true
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    cookieAuth:
      type: apiKey
      in: cookie
      name: token
externalDocs:
  description: documentation portal
  url: https://windmill.dev