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

# Post v1ingress 1



## OpenAPI

````yaml https://api.arklow.io/swagger/ui/json post /v1/ingress/{variant}
openapi: 3.1.0
info:
  title: Arklow
  description: Arklow's API
  version: 0.1.0
servers:
  - url: https://api.arklow.io
    description: Production
  - url: http://localhost:3123
    description: Local development
security:
  - apiKey: []
tags:
  - name: actions
  - name: api_keys
  - name: billing
  - name: config
  - name: credentials
  - name: destinations
  - name: invites
  - name: members
  - name: metrics
  - name: notifications
  - name: orgs
  - name: rules
  - name: sources
  - name: users
  - name: ingress
externalDocs:
  url: https://api.arklow.io/swagger/ui
paths:
  /v1/ingress/{variant}:
    post:
      tags:
        - ingress
      operationId: createIngressVariantAction
      parameters:
        - name: variant
          in: path
          required: true
          schema:
            type: string
            minLength: 1
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IngressVariantRequest'
      responses:
        '200':
          description: Ingress accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IngressActionResponse'
        '400':
          $ref: '#/components/responses/IngressBadRequest'
        '401':
          $ref: '#/components/responses/IngressUnauthorized'
        '500':
          $ref: '#/components/responses/IngressInternalError'
      security:
        - apiKey: []
        - authorization: []
      servers:
        - url: https://api.arklow.io
          description: Production
        - url: http://localhost:3125
          description: Local ingress development
components:
  schemas:
    IngressVariantRequest:
      type: object
      required:
        - payload
      properties:
        payload: {}
        metadata: {}
        tags:
          type: object
          additionalProperties:
            type: string
        version:
          type: integer
          format: int32
          minimum: 1
    IngressActionResponse:
      type: object
      required:
        - data
      properties:
        data:
          type: object
          required:
            - a_id
            - a_def_id
            - queue_s
            - a_va
            - a_ve
          properties:
            a_id:
              type: string
              pattern: ^[0-9]+$
            a_def_id:
              type: string
              pattern: ^[0-9]+$
            queue_s:
              type: string
            a_va:
              type: string
            a_ve:
              type: string
              pattern: ^[0-9]+$
    IngressErrorResponse:
      type: object
      required:
        - data
        - errors
      properties:
        data:
          type: 'null'
        errors:
          type: array
          items:
            $ref: '#/components/schemas/IngressApiError'
    IngressApiError:
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: string
        message:
          type: string
  responses:
    IngressBadRequest:
      description: Error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/IngressErrorResponse'
    IngressUnauthorized:
      description: Error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/IngressErrorResponse'
    IngressInternalError:
      description: Error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/IngressErrorResponse'
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-arklow-auth
      in: header
    authorization:
      type: apiKey
      name: Authorization
      in: header

````