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

# Update Server

> This endpoint is used to update your dedicated server.

## Request

Send a `POST` request to below endpoint to update your dedicated server.

```curl curl theme={null}
--request POST 'https://modelslab.com/api/v1/enterprise/nano_banana/update_server' \
```

## Body

```json json theme={null}
{
    "key": "enterprise_api_key"
}
```


## OpenAPI

````yaml POST /nano_banana/update_server
openapi: 3.0.0
info:
  title: ModelsLab Enterprise Nano Banana API
  version: 1.0.0
  description: Server management endpoints for the Nano Banana enterprise API.
servers:
  - url: https://modelslab.com/api/v1/enterprise
security: []
paths:
  /nano_banana/update_server:
    post:
      summary: Update Server
      description: Updates your dedicated server to the latest version.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/KeyOnlyRequest'
      responses:
        '200':
          description: Server update response
          content:
            application/json:
              example:
                status: success
                message: Server updated successfully
components:
  schemas:
    KeyOnlyRequest:
      type: object
      required:
        - key
      properties:
        key:
          type: string
          description: Your enterprise API key used for request authorization.

````