> ## 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.

# Validate plugin command and load metadata

> Validates a plugin command and loads both config schema and manifest in a single operation



## OpenAPI

````yaml /swagger/5.12/ai-studio-swagger.yml post /api/v1/plugins/{id}/validate-and-load
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:
  /api/v1/plugins/{id}/validate-and-load:
    post:
      tags:
        - plugins
        - workflow
      summary: Validate plugin command and load metadata
      description: >-
        Validates a plugin command and loads both config schema and manifest in
        a single operation
      parameters:
        - name: id
          in: path
          description: Plugin ID
          required: true
          schema:
            type: integer
      requestBody:
        description: Request body with command (for command changes)
        content:
          application/json:
            schema:
              type: object
        required: false
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ValidateAndLoadResponse'
        '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'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api.ValidateAndLoadResponse:
      type: object
      properties:
        attributes:
          type: object
          properties:
            command:
              type: string
            config_schema:
              type: object
              additionalProperties: true
            hook_types:
              type: array
              items:
                type: string
            loaded_at:
              type: string
            manifest:
              type: object
              additionalProperties: true
            primary_hook:
              type: string
            scopes:
              type: array
              items:
                type: string
            status:
              type: string
        id:
          type: string
        type:
          type: string
    api.ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              detail:
                type: string
              title:
                type: string
      description: Error response model
  securitySchemes:
    BearerAuth:
      type: apiKey
      name: Authorization
      in: header

````