Create
Create a new branch for a project
client.Projects.Branches.New(ctx, params) (*BranchstringConfigCommitCommitLatestBuildBuildObjectObjectProjectBranchObjectOrgstringProjectstringProjectBranch, error)
post/v0/projects/{project}/branches
Create a new branch for a project
Parameters
paramsProjectfieldBranchfieldBranchFromfieldForcefieldProjectBranchNewParams
Returns
BranchstringConfigCommitCommitLatestBuildBuildObjectObjectProjectBranchObjectOrgstringProjectstringProjectBranch
package main
import (
"context"
"fmt"
"github.com/stainless-api/stainless-api-go"
"github.com/stainless-api/stainless-api-go/option"
)
func main() {
client := stainless.NewClient(
option.WithAPIKey("My API Key"),
)
projectBranch, err := client.Projects.Branches.New(context.TODO(), stainless.ProjectBranchNewParams{
Project: stainless.String("project"),
Branch: "branch",
BranchFrom: "branch_from",
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", projectBranch.Branch)
}
200 Example
{
"branch": "branch",
"config_commit": {
"repo": {
"branch": "branch",
"name": "name",
"owner": "owner"
},
"sha": "sha"
},
"latest_build": {
"id": "id",
"config_commit": "config_commit",
"created_at": "2019-12-27T18:11:19.117Z",
"documented_spec": {
"content": "content",
"type": "content"
},
"object": "build",
"org": "org",
"project": "project",
"targets": {
"cli": {
"commit": {
"status": "not_started"
},
"lint": {
"status": "not_started"
},
"object": "build_target",
"status": "not_started",
"test": {
"status": "not_started"
},
"build": {
"status": "not_started"
},
"upload": {
"status": "not_started"
}
},
"csharp": {
"commit": {
"status": "not_started"
},
"lint": {
"status": "not_started"
},
"object": "build_target",
"status": "not_started",
"test": {
"status": "not_started"
},
"build": {
"status": "not_started"
},
"upload": {
"status": "not_started"
}
},
"go": {
"commit": {
"status": "not_started"
},
"lint": {
"status": "not_started"
},
"object": "build_target",
"status": "not_started",
"test": {
"status": "not_started"
},
"build": {
"status": "not_started"
},
"upload": {
"status": "not_started"
}
},
"java": {
"commit": {
"status": "not_started"
},
"lint": {
"status": "not_started"
},
"object": "build_target",
"status": "not_started",
"test": {
"status": "not_started"
},
"build": {
"status": "not_started"
},
"upload": {
"status": "not_started"
}
},
"kotlin": {
"commit": {
"status": "not_started"
},
"lint": {
"status": "not_started"
},
"object": "build_target",
"status": "not_started",
"test": {
"status": "not_started"
},
"build": {
"status": "not_started"
},
"upload": {
"status": "not_started"
}
},
"node": {
"commit": {
"status": "not_started"
},
"lint": {
"status": "not_started"
},
"object": "build_target",
"status": "not_started",
"test": {
"status": "not_started"
},
"build": {
"status": "not_started"
},
"upload": {
"status": "not_started"
}
},
"php": {
"commit": {
"status": "not_started"
},
"lint": {
"status": "not_started"
},
"object": "build_target",
"status": "not_started",
"test": {
"status": "not_started"
},
"build": {
"status": "not_started"
},
"upload": {
"status": "not_started"
}
},
"python": {
"commit": {
"status": "not_started"
},
"lint": {
"status": "not_started"
},
"object": "build_target",
"status": "not_started",
"test": {
"status": "not_started"
},
"build": {
"status": "not_started"
},
"upload": {
"status": "not_started"
}
},
"ruby": {
"commit": {
"status": "not_started"
},
"lint": {
"status": "not_started"
},
"object": "build_target",
"status": "not_started",
"test": {
"status": "not_started"
},
"build": {
"status": "not_started"
},
"upload": {
"status": "not_started"
}
},
"terraform": {
"commit": {
"status": "not_started"
},
"lint": {
"status": "not_started"
},
"object": "build_target",
"status": "not_started",
"test": {
"status": "not_started"
},
"build": {
"status": "not_started"
},
"upload": {
"status": "not_started"
}
},
"typescript": {
"commit": {
"status": "not_started"
},
"lint": {
"status": "not_started"
},
"object": "build_target",
"status": "not_started",
"test": {
"status": "not_started"
},
"build": {
"status": "not_started"
},
"upload": {
"status": "not_started"
}
}
},
"updated_at": "2019-12-27T18:11:19.117Z"
},
"object": "project_branch",
"org": "org",
"project": "project"
}