**Version: 202601**

# Rename theme

**PATCH** `/openapi/2026-01/themes/:theme_id/name`

Change the display name of a theme in the current store.

## Request

**Path Parameters**

- `theme_id` string (required)

  Theme id (uuid) to rename

**application/json**

**Body | Example**

**Body (required)**

- `name` string (required)

  New theme name

```json
{
  "name": "string"
}
```

## Responses

**200**

OK

**application/json**

**Schema | Example**

**Schema**

- `code` string

  error code
- `message` string

  error message
- `data` object

  - `data` object

    Rename result

```json
{
  "code": "string",
  "message": "string",
  "data": {
    "data": {}
  }
}
```
