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

# Set action definition lane advice



## OpenAPI

````yaml https://api.arklow.io/swagger/ui/json put /v1/orgs/{org_id}/actions/definitions/{id}/lanes/advice
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/orgs/{org_id}/actions/definitions/{id}/lanes/advice:
    put:
      tags:
        - actions
      summary: Set action definition lane advice
      operationId: put_v1_orgs_by_org_id_actions_definitions_by_id_lanes_advice
      parameters:
        - schema:
            type: string
            pattern: ^[0-9]+$
          in: path
          name: org_id
          required: true
        - schema:
            type: string
            pattern: ^[0-9]+$
          in: path
          name: id
          required: true
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                tags:
                  anyOf:
                    - type: object
                      additionalProperties:
                        type: string
                    - type: 'null'
                running_limit_cap:
                  anyOf:
                    - type: integer
                      minimum: 0
                    - type: 'null'
                unsettled_limit_cap:
                  anyOf:
                    - type: integer
                      minimum: 0
                    - type: 'null'
                confidence_bps:
                  type: integer
                  minimum: 0
                sample_size:
                  type: integer
                  minimum: 0
                feature_window_minutes:
                  type: integer
                  minimum: 0
                expires_at:
                  type: string
                  format: date-time
                ttl_seconds:
                  type: integer
                  minimum: 1
                evidence_summary: {}
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - errors
                properties:
                  data:
                    anyOf:
                      - type: object
                        required:
                          - org_id
                          - action_definition_id
                          - action_variant
                          - dispatch_lane
                          - tag_dimensions_key
                          - confidence_bps
                          - sample_size
                          - feature_window_minutes
                          - computed_at
                          - expires_at
                          - running_limit_cap
                          - unsettled_limit_cap
                        properties:
                          org_id:
                            type: string
                          action_definition_id:
                            type: string
                          action_variant:
                            type: string
                          dispatch_lane:
                            type: string
                          tag_dimensions_key:
                            type: string
                          tags:
                            anyOf:
                              - type: object
                                additionalProperties:
                                  type: string
                              - type: 'null'
                          confidence_bps:
                            type: integer
                            minimum: 0
                          sample_size:
                            type: integer
                            minimum: 0
                          feature_window_minutes:
                            type: integer
                            minimum: 0
                          computed_at:
                            type: string
                            format: date-time
                          expires_at:
                            type: string
                            format: date-time
                          running_limit_cap:
                            anyOf:
                              - type: integer
                                minimum: 0
                              - type: 'null'
                          unsettled_limit_cap:
                            anyOf:
                              - type: integer
                                minimum: 0
                              - type: 'null'
                          evidence_summary: {}
                      - type: 'null'
                  errors:
                    anyOf:
                      - type: array
                        items:
                          type: object
                          required:
                            - code
                            - message
                          properties:
                            code:
                              type: string
                            message:
                              type: string
                      - type: 'null'
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-arklow-auth
      in: header

````