# Create folder

Create a folder in your tenant. Folders contain Spark services.

Returns: `status` to indicate whether the request was completed.

{% code overflow="wrap" %}

```shellscript
POST /api/v1/product/create
```

{% endcode %}

### Authorization

* `Bearer {token}` accessible from [Authorization - Bearer token](/spark-apis/authorization-bearer-token.md) or systematically via [Client Credentials](/identity-and-access-management/client-credentials.md).
  * The request headers should include a key for `Authorization` with the value `Bearer {token}`.

### Request body <a href="#request-body" id="request-body"></a>

The required request body needs to be in `form-data` format with the following values added.

| Key              | Value                                                                                                                                    |
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| `Name` \*        | Folder name.                                                                                                                             |
| `Category` \*    | Folder category. Must be a valid folder category. The category names are managed in [Options](/navigation/options.md#folder-categories). |
| `Description` \* | Folder description.                                                                                                                      |
| `Status` \*      | `Design` is the default value.                                                                                                           |
| `CoverImage`     | Image file for cover image.                                                                                                              |

### Sample response

`HTTP 200 OK` `Content-Type: application/json`

```json
{
    "message": null,
    "data": {
        "folderId": "66e9c8a9-335e-43b5-9353-39077d49d188",
        "get_product_url": "https://excel.myenvironment.coherent.global/api/v1/product/GetProduct/folderstatus"
    },
    "errorCode": null,
    "status": "Success"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.coherent.global/spark-apis/folder-apis/create-folder.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
