**Version: 202601**

# Get theme task

**GET** `/openapi/2026-01/themes/task/:task_id`

Get the status and details of a theme background task, such as a theme upload or upgrade.

## Request

**Path Parameters**

- `task_id` string (required)

  Task ID

## Responses

**200**

OK

**application/json**

**Schema | Example**

**Schema**

- `code` string

  error code
- `message` string

  error message
- `data` object

  - `task` object

    Task

    - `id` string

      Task ID
    - `store_id` int32

      Store ID
    - `type` string

      Type
    - `status` int32

      Status
    - `created_at` string

      Creation timestamp, in ISO-8601 format
    - `updated_at` string

      Last update timestamp, in ISO-8601 format (e.g. `2023-01-01T00:00:00Z`)
    - `info` string

      Information
    - `message` string

      Message
    - `manifest` string

      Manifest

```json
{
  "code": "string",
  "message": "string",
  "data": {
    "task": {
      "id": "string",
      "store_id": 0,
      "type": "string",
      "status": 0,
      "created_at": "string",
      "updated_at": "string",
      "info": "string",
      "message": "string",
      "manifest": "string"
    }
  }
}
```
