---
title: "Create a team revision"
method: POST
path: "/v1/teams/{team_id}/revisions"
tags: ["teams"]
---

# Create a team revision

`POST /v1/teams/{team_id}/revisions`

## Path parameters

- `team_id` string, uuid, required

## Request body

- TeamRevisionCreate
  - `name` string, required
  - `description` string, nullable
  - `based_on_revision_id` string, uuid, nullable
  - `purpose` string, nullable
  - `mode` 'supervisor' | 'swarm'
  - `fallback_member_id` string, uuid, required
  - `initial_member_id` string, uuid, nullable
  - `swarm_domain_hint` string, nullable
  - `swarm_max_hops` integer, nullable
  - `router_config_id` string, uuid, nullable
  - `router_model_settings` ModelChainEntry
    - `model` string, required
    - `config` ModelConfig
      - `temperature` number, nullable
      - `max_tokens` integer, nullable
      - `top_p` number, nullable
      - `stop_sequences` string[], nullable
      - `reasoning_effort` 'none' | 'minimal' | 'low' | 'medium' | 'high' | 'xhigh' | 'max', nullable
      - `request_timeout_ms` integer, nullable
      - `thinking_budget` integer, nullable
  - `members` TeamMemberCreate[], nullable
    - `assistant_id` string, uuid, required
    - `assistant_revision_id` string, uuid, nullable
    - `router_name` string, nullable
    - `router_description` string, nullable
    - `examples` string[], nullable
    - `model_settings` ModelChainEntry
      - `model` string, required
      - `config` ModelConfig
        - `temperature` number, nullable
        - `max_tokens` integer, nullable
        - `top_p` number, nullable
        - `stop_sequences` string[], nullable
        - `reasoning_effort` 'none' | 'minimal' | 'low' | 'medium' | 'high' | 'xhigh' | 'max', nullable
        - `request_timeout_ms` integer, nullable
        - `thinking_budget` integer, nullable
    - `position` integer
    - `enabled` boolean

## Response `201`

Successful Response

- TeamRevisionResponse
  - `id` string, uuid, required
  - `team_id` string, uuid, required
  - `name` string, required
  - `description` string, nullable
  - `purpose` string, nullable
  - `mode` string, required
  - `fallback_member_id` string, uuid, required
  - `initial_member_id` string, uuid, nullable
  - `swarm_domain_hint` string, nullable
  - `swarm_max_hops` integer, required
  - `router_config_id` string, uuid, nullable
  - `router_model_settings` ModelChainEntry
    - `model` string, required
    - `config` ModelConfig
      - `temperature` number, nullable
      - `max_tokens` integer, nullable
      - `top_p` number, nullable
      - `stop_sequences` string[], nullable
      - `reasoning_effort` 'none' | 'minimal' | 'low' | 'medium' | 'high' | 'xhigh' | 'max', nullable
      - `request_timeout_ms` integer, nullable
      - `thinking_budget` integer, nullable
  - `members` TeamMemberResponse[]
    - `id` string, uuid, required
    - `assistant_id` string, uuid, required
    - `assistant_name` string, required
    - `assistant_revision_id` string, uuid, nullable
    - `router_name` string, nullable
    - `router_description` string, nullable
    - `examples` string[]
    - `model_settings` ModelChainEntry
      - `model` string, required
      - `config` ModelConfig
        - `temperature` number, nullable
        - `max_tokens` integer, nullable
        - `top_p` number, nullable
        - `stop_sequences` string[], nullable
        - `reasoning_effort` 'none' | 'minimal' | 'low' | 'medium' | 'high' | 'xhigh' | 'max', nullable
        - `request_timeout_ms` integer, nullable
        - `thinking_budget` integer, nullable
    - `position` integer, required
    - `enabled` boolean, required
    - `created_at` string, date-time, required
  - `created_by` string, nullable
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `400` — Bad request
- `401` — Authentication required
- `422` — Validation Error

## Changes

- **2026-08-12** `5a5597ebb2d6` — 18 warning, 8 info
  - the `members/anyOf[subschema #1]/items/model_settings/anyOf[subschema #1: ModelChainEntry]/config/request_timeout_ms/anyOf[subschema #1]/` request property's max was set to `20000.00`
  - the `members/anyOf[subschema #1]/items/model_settings/anyOf[subschema #1: ModelChainEntry]/config/temperature/anyOf[subschema #1]/` request property's max was set to `2.00`
  - the `members/anyOf[subschema #1]/items/model_settings/anyOf[subschema #1: ModelChainEntry]/config/top_p/anyOf[subschema #1]/` request property's max was set to `1.00`
  - the `router_model_settings/anyOf[subschema #1: ModelChainEntry]/config/request_timeout_ms/anyOf[subschema #1]/` request property's max was set to `20000.00`
  - …22 more

[Change history](https://skmtc.dev/oneloop-hq/apis/feather-api/changes/v1/teams/:team_id/revisions/post.md)

---

[API](https://skmtc.dev/oneloop-hq/apis/feather-api.md) · [All operations](https://skmtc.dev/oneloop-hq/apis/feather-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/oneloop-hq/feather-api/revisions/9cd7291d4228/schema)
