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



## OpenAPI

````yaml https://api.arklow.io/swagger/ui/json post /v1/modack
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/modack:
    post:
      tags:
        - ingress
      operationId: modAckIngressAction
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IngressModAckRequest'
      responses:
        '200':
          description: Action signal accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IngressSignalResponse'
        '400':
          $ref: '#/components/responses/IngressBadRequest'
        '401':
          $ref: '#/components/responses/IngressUnauthorized'
        '404':
          $ref: '#/components/responses/IngressNotFound'
        '409':
          $ref: '#/components/responses/IngressConflict'
        '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:
    IngressModAckRequest:
      type: object
      required:
        - action_record_id
        - attempt
        - mod_ack
      properties:
        action_record_id:
          type: string
          pattern: ^[0-9]+$
        attempt:
          type: integer
          format: int32
          minimum: 0
        mod_ack:
          type: integer
          format: int64
          minimum: 1
    IngressSignalResponse:
      type: object
      required:
        - data
      properties:
        data:
          type: object
          required:
            - status
          properties:
            status:
              type: string
              enum:
                - ok
    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'
    IngressNotFound:
      description: Error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/IngressErrorResponse'
    IngressConflict:
      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

````