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

# Dismiss a recommendation proposal



## OpenAPI

````yaml https://api.arklow.io/swagger/ui/json post /v1/orgs/{org_id}/proposals/{id}/dismiss
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: capacity-domains
  - name: credentials
  - name: destinations
  - name: invites
  - name: members
  - name: metrics
  - name: notifications
  - name: orgs
  - name: proposals
  - name: rules
  - name: scale-targets
  - name: sources
  - name: users
  - name: ingress
externalDocs:
  url: https://api.arklow.io/swagger/ui
paths:
  /v1/orgs/{org_id}/proposals/{id}/dismiss:
    post:
      tags:
        - proposals
      summary: Dismiss a recommendation proposal
      operationId: post_v1_orgs_by_org_id_proposals_by_id_dismiss
      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
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - errors
                properties:
                  data:
                    anyOf:
                      - type: object
                        required:
                          - id
                          - org_id
                          - kind
                          - subject_key
                          - status
                          - proposed
                          - evidence
                          - acted_at
                          - updated_at
                        properties:
                          id:
                            type: string
                            pattern: ^[0-9]+$
                          org_id:
                            type: string
                            pattern: ^[0-9]+$
                          kind:
                            anyOf:
                              - type: string
                                enum:
                                  - capacity_domain_membership
                              - type: string
                                enum:
                                  - capacity_domain_declared_budget
                              - type: string
                                enum:
                                  - dispatch_lane_caps
                              - type: string
                                enum:
                                  - scale_target_adjustment
                              - type: string
                                enum:
                                  - scale_target_envelope
                              - type: string
                                enum:
                                  - scale_target_binding
                          subject_key:
                            type: string
                          status:
                            anyOf:
                              - type: string
                                enum:
                                  - proposed
                              - type: string
                                enum:
                                  - accepted
                              - type: string
                                enum:
                                  - dismissed
                          proposed:
                            anyOf:
                              - type: object
                                required:
                                  - capacity_domain_id
                                  - destination_id
                                properties:
                                  capacity_domain_id:
                                    type: string
                                    pattern: ^[0-9]+$
                                  destination_id:
                                    type: string
                                    pattern: ^[0-9]+$
                                additionalProperties: false
                              - type: object
                                required:
                                  - capacity_domain_id
                                  - declared_budget
                                properties:
                                  capacity_domain_id:
                                    type: string
                                    pattern: ^[0-9]+$
                                  declared_budget:
                                    type: integer
                                    minimum: 1
                                additionalProperties: false
                              - type: object
                                required:
                                  - dispatch_lane
                                  - tag_dimensions_key
                                  - running_limit_cap
                                  - unsettled_limit_cap
                                  - confidence_bps
                                  - sample_size
                                properties:
                                  dispatch_lane:
                                    type: string
                                  tag_dimensions_key:
                                    type: string
                                  running_limit_cap:
                                    anyOf:
                                      - type: integer
                                        minimum: 1
                                      - type: 'null'
                                  unsettled_limit_cap:
                                    anyOf:
                                      - type: integer
                                        minimum: 1
                                      - type: 'null'
                                  confidence_bps:
                                    type: integer
                                    minimum: 0
                                  sample_size:
                                    type: integer
                                    minimum: 0
                                additionalProperties: false
                              - type: object
                                required:
                                  - scale_target_id
                                  - effective_min_replicas
                                  - basis
                                properties:
                                  scale_target_id:
                                    type: string
                                    pattern: ^[0-9]+$
                                  effective_min_replicas:
                                    type: integer
                                    minimum: 0
                                  basis: {}
                                additionalProperties: false
                              - type: object
                                required:
                                  - scale_target_id
                                  - needed_replicas
                                  - current_max_replicas
                                properties:
                                  scale_target_id:
                                    type: string
                                    pattern: ^[0-9]+$
                                  needed_replicas:
                                    type: integer
                                    minimum: 1
                                  current_max_replicas:
                                    type: integer
                                    minimum: 1
                                additionalProperties: false
                              - type: object
                                required:
                                  - scale_target_id
                                  - metric_source_query_id
                                  - firing_series_id
                                properties:
                                  scale_target_id:
                                    type: string
                                    pattern: ^[0-9]+$
                                  metric_source_query_id:
                                    type: string
                                    pattern: ^[0-9]+$
                                  tag_projection_key:
                                    type: string
                                    minLength: 1
                                  tag_projection_value:
                                    type: string
                                    minLength: 1
                                  firing_series_id:
                                    type: string
                                    minLength: 1
                                additionalProperties: false
                          evidence:
                            anyOf:
                              - {}
                              - type: 'null'
                          acted_at:
                            anyOf:
                              - type: string
                                format: date-time
                              - type: 'null'
                          updated_at:
                            type: string
                            format: date-time
                      - 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

````