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

# Update WordPress site storage access

> Update whether a WordPress site token has no Convertly Storage access or isolated site storage. Disabling storage blocks storage reads and writes without deleting existing isolated files.



## OpenAPI

````yaml /openapi.json patch /api/wordpress-instances/{id}
openapi: 3.1.0
info:
  title: Convertly API
  version: 1.0.0
  description: >-
    Convertly provides production API endpoints for media conversion,
    compression, Image CDN delivery, Forma AI, HLS/DASH video streaming, media
    tools, async jobs, workflows, webhooks, and Convertly Storage.
  license:
    name: Proprietary
    url: https://convertly.sh/terms
servers:
  - url: https://convertly.sh
security:
  - bearerAuth: []
  - apiKeyAuth: []
paths:
  /api/wordpress-instances/{id}:
    patch:
      tags:
        - WordPress
      summary: Update WordPress site storage access
      description: >-
        Update whether a WordPress site token has no Convertly Storage access or
        isolated site storage. Disabling storage blocks storage reads and writes
        without deleting existing isolated files.
      operationId: updateWordPressInstance
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateWordPressInstanceRequest'
      responses:
        '200':
          description: WordPress site updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessResponse'
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '500':
          $ref: '#/components/responses/Error'
components:
  schemas:
    UpdateWordPressInstanceRequest:
      type: object
      properties:
        storageAccess:
          $ref: '#/components/schemas/WordPressStorageAccess'
      required:
        - storageAccess
    SuccessResponse:
      type: object
      properties:
        success:
          type: boolean
      required:
        - success
    WordPressStorageAccess:
      type: string
      enum:
        - none
        - isolated
      description: >-
        `none` disables Convertly Storage for the site token. `isolated` gives
        the site its own storage scope.
    Error:
      type: object
      properties:
        error:
          type: string
        upgradeUrl:
          type: string
      required:
        - error
  responses:
    Error:
      description: Error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Dashboard-generated Convertly API key. Keys currently begin with
        `cvly_`.
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Alternative API key header for server-side clients.

````