---
title: "CreateSolutionBody"
description: "Request body for creating a Solution."
section: "Reference"
group: "Types"
order: 195
---

## Definition

```ts
interface CreateSolutionBody {
  workspaceId: string;
  name: string;
  description?: string | undefined;
}
```

## Fields

| Field         | Type                  | Notes                                                                    |
| ------------- | --------------------- | ------------------------------------------------------------------------ |
| `workspaceId` | `string`              | `required` — Workspace that will own the new solution.                   |
| `name`        | `string`              | `required` — Solution name.                                              |
| `description` | `string \| undefined` | `optional` — Optional longer-form description of the solution's purpose. |
