> ## Documentation Index
> Fetch the complete documentation index at: https://tyk.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Configure provider credentials

> Set up credentials for a specific OpenAPI provider



## OpenAPI

````yaml /swagger/5.12/ai-studio-swagger.yml post /providers/{id}/configure
openapi: 3.0.1
info:
  title: Midsommar API
  description: This is the API for the Midsommar user and group management system.
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    url: http://www.swagger.io/support
    email: support@swagger.io
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
servers:
  - url: //localhost:8080/api/v1
security: []
paths:
  /providers/{id}/configure:
    post:
      tags:
        - providers
      summary: Configure provider credentials
      description: Set up credentials for a specific OpenAPI provider
      parameters:
        - name: id
          in: path
          description: Provider ID
          required: true
          schema:
            type: string
      requestBody:
        description: Provider configuration
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/api.ConfigureProviderRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.SuccessResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
components:
  schemas:
    api.ConfigureProviderRequest:
      type: object
      properties:
        config:
          $ref: '#/components/schemas/providers.ProviderConfig'
    api.SuccessResponse:
      type: object
      properties:
        message:
          type: string
    api.ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              detail:
                type: string
              title:
                type: string
      description: Error response model
    providers.ProviderConfig:
      type: object
      properties:
        selected_api_id:
          type: string
        token:
          type: string
        url:
          type: string

````