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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Configure automation parameters

> Assigns every unresolved automation parameter and resumes project planning.



## OpenAPI

````yaml https://automate.ax/api/v1/openapi.json put /deployments/{deploymentId}/parameters
openapi: 3.1.1
info:
  title: Automate.ax API
  version: 0.0.0
servers:
  - url: https://automate.ax/api/v1
security:
  - bearerAuth: []
paths:
  /deployments/{deploymentId}/parameters:
    put:
      tags:
        - Deployments
      summary: Configure automation parameters
      description: >-
        Assigns every unresolved automation parameter and resumes project
        planning.
      operationId: configureDeploymentParameters
      parameters:
        - name: deploymentId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                values:
                  type: array
                  items:
                    type: object
                    properties:
                      automationId:
                        type: string
                      name:
                        type: string
                        minLength: 1
                      value:
                        type: string
                        contentEncoding: base64
                    required:
                      - automationId
                      - name
                      - value
              required:
                - values
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  txid:
                    type: integer
                    minimum: 0
                    maximum: 9007199254740991
                required:
                  - txid
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Automate.ax user session bearer token.

````