---
title: "Create Framework Group"
method: POST
path: "/v2/framework/groups"
tags: ["Framework"]
---

# Create Framework Group

`POST /v2/framework/groups`

Create a new framework group.

A framework group is a collection of frameworks that can be used for
organized visualization and analysis.

Args:
    name: Group name
    description: Optional group description
    framework_ids: List of framework UUIDs to include in group

Returns:
    Created WorkbookGroup object with id, timestamps, etc.

## Request body

- BodyCreateFrameworkGroupV2FrameworkGroupsPost
  - `name` string, required
  - `description` string, nullable
  - `framework_ids` string[]
  - `config` object, nullable

## Response `200`

Successful Response

- WorkbookGroup — Workbook group model - represents a collection of frameworks. Groups are stored in dashboard state (apps.json) and allow users to organize their framework library into focused, project-specific collections.
  - `id` string, required
  - `name` string, required
  - `description` string, nullable
  - `framework_ids` string[]
  - `created_at` string, required
  - `updated_at` string, required
  - `owner_email` string, nullable
  - `framework_count` integer, required — Computed field: count of frameworks in the group

## Other responses

- `404` — Not Found
- `422` — Validation Error

---

[API](https://skmtc.net/carbonarc/apis/carbon-arc-api-documentation.md) · [All operations](https://skmtc.net/carbonarc/apis/carbon-arc-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/carbonarc/carbon-arc-api-documentation/revisions/bd33ea42994c/schema)
