---
title: "Create Flavor"
method: POST
path: "/api/v1/flavors"
tags: ["flavors"]
---

# Create Flavor

`POST /api/v1/flavors`

Creates a stack component flavor.

Args:
    flavor: Stack component flavor to register.

Returns:
    The created stack component flavor.

## Request body

- FlavorRequest — Request model for flavors.
  - `user` string, uuid, required
  - `name` string, required
  - `type` 'alerter' | 'annotator' | 'artifact_store' | 'container_registry' | 'data_validator' | 'experiment_tracker' | 'feature_store' | 'image_builder' | 'model_deployer' | 'orchestrator' | 'step_operator' | 'model_registry', required — All possible types a `StackComponent` can have.
  - `config_schema` object, required
  - `connector_type` string, nullable
  - `connector_resource_type` string, nullable
  - `connector_resource_id_attr` string, nullable
  - `source` string, required
  - `integration` string, nullable, required
  - `logo_url` string, nullable
  - `docs_url` string, nullable
  - `sdk_docs_url` string, nullable
  - `is_custom` boolean
  - `workspace` string, uuid, nullable

## Response `200`

Successful Response

- FlavorResponse — Response model for flavors.
  - `body` FlavorResponseBody — Response body for flavor.
    - `created` string, date-time, required
    - `updated` string, date-time, required
    - `user` UserResponse — Response model for user and service accounts. This returns the activation_token that is required for the user-invitation-flow of the frontend. The email is returned optionally as well for use by the analytics on the client-side.
      - `body` UserResponseBody — Response body for users.
        - `created` string, date-time, required
        - `updated` string, date-time, required
        - `active` boolean
        - `activation_token` string, nullable
        - `full_name` string
        - `email_opted_in` boolean, nullable — `null` if not answered, `true` if agreed, `false` if skipped.
        - `is_service_account` boolean, required
        - `is_admin` boolean, required
      - `metadata` UserResponseMetadata — Response metadata for users.
        - `email` string, nullable
        - `external_user_id` string, uuid, nullable
        - `user_metadata` object
      - `resources` UserResponseResources — Class for all resource models associated with the user entity.
      - `id` string, uuid, required
      - `permission_denied` boolean
      - `name` string, required
    - `type` 'alerter' | 'annotator' | 'artifact_store' | 'container_registry' | 'data_validator' | 'experiment_tracker' | 'feature_store' | 'image_builder' | 'model_deployer' | 'orchestrator' | 'step_operator' | 'model_registry', required — All possible types a `StackComponent` can have.
    - `integration` string, nullable, required
    - `logo_url` string, nullable
  - `metadata` FlavorResponseMetadata — Response metadata for flavors.
    - `workspace` WorkspaceResponse, required — Response model for workspaces.
      - `body` WorkspaceResponseBody — Response body for workspaces.
        - `created` string, date-time, required
        - `updated` string, date-time, required
      - `metadata` WorkspaceResponseMetadata — Response metadata for workspaces.
        - `description` string
      - `resources` WorkspaceResponseResources — Class for all resource models associated with the workspace entity.
      - `id` string, uuid, required
      - `permission_denied` boolean
      - `name` string, required
    - `config_schema` object, required
    - `connector_type` string, nullable
    - `connector_resource_type` string, nullable
    - `connector_resource_id_attr` string, nullable
    - `source` string, required
    - `docs_url` string, nullable
    - `sdk_docs_url` string, nullable
    - `is_custom` boolean
  - `resources` FlavorResponseResources — Class for all resource models associated with the flavor entity.
  - `id` string, uuid, required
  - `permission_denied` boolean
  - `name` string, required

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `409` — Conflict
- `422` — Unprocessable Entity

---

[API](https://skmtc.net/zenml-io/apis/zenml-2.md) · [All operations](https://skmtc.net/zenml-io/apis/zenml-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/zenml-io/zenml-2/versions/febb01b8bce3/schema)
