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

# Edit presentation

> Use AI to edit an existing presentation based on natural language instructions. The AI agent reads the current slides, researches any new data needed, and applies changes surgically.



## OpenAPI

````yaml /openapi.json post /v1/presentations/{presentationId}/edit
openapi: 3.1.0
info:
  title: Steerco API
  version: 1.0.0
  description: >-
    REST API and MCP server for managing presentations, templates, themes, and
    entities.
servers:
  - url: https://api.getsteerco.com
security: []
paths:
  /v1/presentations/{presentationId}/edit:
    post:
      summary: Edit presentation
      description: >-
        Use AI to edit an existing presentation based on natural language
        instructions. The AI agent reads the current slides, researches any new
        data needed, and applies changes surgically.
      parameters:
        - schema:
            type: string
            pattern: ^[a-f\d]{24}$/i
            description: The presentation ID to edit
          required: true
          description: The presentation ID to edit
          name: presentationId
          in: path
        - schema:
            type: string
            description: >-
              The workspace ID. Get available workspaces from GET
              /v1/workspaces.
          required: true
          description: The workspace ID. Get available workspaces from GET /v1/workspaces.
          in: header
          name: X-Workspace-Id
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                instructions:
                  type: string
                  description: >-
                    Natural language instructions for what to change in the
                    presentation
              required:
                - instructions
      responses:
        '200':
          description: Edit completed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EditResult'
        '404':
          description: Presentation not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    EditResult:
      type: object
      properties:
        status:
          type: string
          enum:
            - updated
            - no_changes
        changesApplied:
          type: array
          items:
            type: string
      required:
        - status
        - changesApplied
    Error:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
      required:
        - error
        - code
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: API key (ak_ prefix). Generate one from your Steerco profile settings.

````