> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chronosphere.io/llms.txt
> Use this file to discover all available pages before exploring further.

# CreateCommandCenterGroup



## OpenAPI

````yaml openapi/api_v1_config_openapi3_DOCUMENTATION_ONLY.json POST /api/v1/config/command-center-groups
openapi: 3.0.3
info:
  description: >

    The Config API provides standard HTTP/JSON REST endpoints for creating,
    reading,

    updating, deleting, and listing configurable Chronosphere resources.


    Use this link to download the raw Swagger specification:

    <a href="/api/v1/config/swagger.json">/api/v1/config/swagger.json</a>
  title: Config V1 API
  version: v1
servers:
  - url: https://{tenant}.chronosphere.io
    variables:
      tenant:
        default: tenant
        description: tenant ID assigned by the service provider
security:
  - ApiKeyAuth: []
tags:
  - name: ConfigV1
paths:
  /api/v1/config/command-center-groups:
    post:
      tags:
        - CommandCenterGroup
      operationId: CreateCommandCenterGroup
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/configv1CreateCommandCenterGroupRequest'
        required: true
        x-originalParamName: body
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/configv1CreateCommandCenterGroupResponse'
          description: A successful response containing the created CommandCenterGroup.
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apiError'
          description: Cannot create the CommandCenterGroup because the request is invalid.
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apiError'
          description: >-
            Cannot create the CommandCenterGroup because there is a conflict
            with an existing CommandCenterGroup.
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apiError'
          description: An unexpected error response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/genericError'
          description: An undefined error response.
components:
  schemas:
    configv1CreateCommandCenterGroupRequest:
      properties:
        command_center_group:
          allOf:
            - $ref: '#/components/schemas/configv1CommandCenterGroup'
          description: The CommandCenterGroup to create.
        dry_run:
          description: >-
            If `true`, validates the specified configuration without creating
            the CommandCenterGroup. If the specified configuration is valid, the
            endpoint returns a partial response without the CommandCenterGroup.
            If the specified configuration is invalid, the endpoint returns an
            error.
          type: boolean
      type: object
    configv1CreateCommandCenterGroupResponse:
      properties:
        command_center_group:
          $ref: '#/components/schemas/configv1CommandCenterGroup'
      type: object
    apiError:
      properties:
        message:
          description: An error message describing what went wrong.
          type: string
      type: object
    genericError:
      additionalProperties: true
      type: object
    configv1CommandCenterGroup:
      description: CommandCenterGroup is a group of signals tracked in the command center.
      properties:
        created_at:
          description: >-
            Timestamp of when the CommandCenterGroup was created. Cannot be set
            by clients.
          format: date-time
          readOnly: true
          type: string
        name:
          description: Unique name of the CommandCenterGroup.
          type: string
        primary_slo_reference:
          allOf:
            - $ref: '#/components/schemas/configv1SloReference'
          description: Primary SLO for this group.
        related_slo_references:
          description: Related SLOs tracked by this group, secondary to the primary one.
          items:
            $ref: '#/components/schemas/configv1SloReference'
          type: array
        slug:
          description: Unique slug identifying the CommandCenterGroup.
          type: string
        updated_at:
          description: >-
            Timestamp of when the CommandCenterGroup was last updated. Cannot be
            set by clients.
          format: date-time
          readOnly: true
          type: string
      required:
        - name
      type: object
    configv1SloReference:
      description: SloReference references an SLO by slug.
      properties:
        slug:
          description: Slug of the referenced SLO.
          type: string
      required:
        - slug
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: Chronosphere API token
      in: header
      name: API-Token
      type: apiKey

````

## Related topics

- [UpdateCommandCenterGroup](/tooling/api-info/definition/operations/UpdateCommandCenterGroup.md)
- [ReadCommandCenterGroup](/tooling/api-info/definition/operations/ReadCommandCenterGroup.md)
- [ListCommandCenterGroups](/tooling/api-info/definition/operations/ListCommandCenterGroups.md)
- [DeleteCommandCenterGroup](/tooling/api-info/definition/operations/DeleteCommandCenterGroup.md)
- [Terraform provider release notes](/tooling/infrastructure/terraform/release-notes.md)
