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

# Command



## OpenAPI

````yaml https://aquilax.ai/api/v3/openapi post /api/v3/securitron
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://aquilax.ai
    description: Production server
security: []
paths:
  /api/v3/securitron:
    post:
      summary: Command
      operationId: command_api_v3_securitron_post
      parameters:
        - name: session-id
          in: header
          required: false
          schema:
            type: string
            title: Session-Id
        - name: group-id
          in: header
          required: false
          schema:
            type: string
            title: Group-Id
        - name: user-id
          in: header
          required: false
          schema:
            type: string
            title: User-Id
        - name: org-id
          in: header
          required: false
          schema:
            type: string
            title: Org-Id
        - name: context
          in: header
          required: false
          schema:
            type: string
            title: Context
        - name: email-id
          in: header
          required: false
          schema:
            type: string
            title: Email-Id
        - name: rule-id
          in: header
          required: false
          schema:
            type: integer
            title: Rule-Id
        - name: json-output
          in: header
          required: false
          schema:
            type: boolean
            default: false
            title: Json-Output
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````