Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/compiled.json
Original file line number Diff line number Diff line change
Expand Up @@ -20740,8 +20740,8 @@
},
"post": {
"summary": "Create a branch",
"description": "Create a new branch.\n\nBranch project provisioning runs asynchronously, so the newly created branch is returned in a transitional state (typically `creating_branch`) and only reaches `success` once the underlying project has been set up. Poll the branch resource until its `state` becomes `success` before performing further operations on it.\n\nRequires the Branching feature to be enabled on the account.\n\n*Note: Creating a new branch may take several minutes depending on the project size.*\n",
"operationId": "branch/create",
"description": "Create a new branch.\n\nBranch project provisioning runs asynchronously, so the newly created branch is returned in a transitional state (typically `creating_branch`) and only reaches `success` once the underlying project has been set up. Poll the branch resource until its `state` becomes `success` before performing further operations on it.\n\nRequires the Branching feature to be enabled on the account. Additionally, the project's \"Enable Branching\" setting must be turned on (configurable in the project's Advanced settings). If branching is not enabled at the project level, the request is rejected with a `422` error.\n\n*Note: Creating a new branch may take several minutes depending on the project size.*\n",
"operationId": "branches/create",
"tags": [
"Branches"
],
Expand Down Expand Up @@ -20811,7 +20811,7 @@
"application/json": {
"schema": {
"type": "object",
"title": "branch/create/parameters",
"title": "branches/create/parameters",
"required": [
"name"
],
Expand Down
6 changes: 3 additions & 3 deletions paths/branches/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ description: |

Branch project provisioning runs asynchronously, so the newly created branch is returned in a transitional state (typically `creating_branch`) and only reaches `success` once the underlying project has been set up. Poll the branch resource until its `state` becomes `success` before performing further operations on it.

Requires the Branching feature to be enabled on the account.
Requires the Branching feature to be enabled on the account. Additionally, the project's "Enable Branching" setting must be turned on (configurable in the project's Advanced settings). If branching is not enabled at the project level, the request is rejected with a `422` error.

*Note: Creating a new branch may take several minutes depending on the project size.*
operationId: branch/create
operationId: branches/create
tags:
- Branches
parameters:
Expand Down Expand Up @@ -61,7 +61,7 @@ requestBody:
application/json:
schema:
type: object
title: branch/create/parameters
title: branches/create/parameters
required:
- name
properties:
Expand Down
Loading