1. Create a Branch

Create a Branch

spaces/:space_id/branches/

Path Parameters

  • :space_id

    number

    Numeric id of a space

Request Body Properties

  • branch

    The Branch Object

    Branch Object

    • name

      string

      Branch Name

    • space_id

      number

      Numeric id of a space

    • deployed_at

      string

      Deployed date (Format: yyyy-MM-dd'T'HH:mm:ssZ)

    • source_id

      number

      Source of this branch null or id of another branch

    • url

      string

      Preview URL for this branch

    • position

      number

      Numeric representation of the branch position

Request
curl "https://mapi.storyblok.com/v1/spaces/606/branches/" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Authorization: YOUR_OAUTH_TOKEN" \
  -d "{\t\"branch\": {\t\t\"name\": \"Deployment\",\t\t\"space_id\": 273116,\t\t\"url\": \"https://preview-domain.com\"\t}}"
Request
// Using the Universal JavaScript Client:
// https://github.com/storyblok/storyblok-js-client
Storyblok.post('/spaces/606/branches/', {
	"branch": {
		"name": "Deployment",
		"space_id": 273116,
		"url": "https://preview-domain.com"
	}
})
  .then(response => {
    console.log(response)
  }).catch(error => { 
    console.log(error)
  })
Request
$client = new \Storyblok\Client('YOUR_STORYBLOK_SPACE_ACCESS_TOKEN');

$payload = [
	"branch" =>  [
		"name" =>  "Deployment",
		"space_id" =>  273116,
		"url" =>  "https => //preview-domain.com"
	]
];

$client->post('/spaces/606/branches/', $payload)->getBody();
Request
require 'storyblok'
client = Storyblok::Client.new(oauth_token: 'YOUR_OAUTH_TOKEN')

payload = {
	"branch" =>  {
		"name" =>  "Deployment",
		"space_id" =>  273116,
		"url" =>  "https => //preview-domain.com"
	}
}

client.post('/spaces/606/branches/', payload)
Request
HttpResponse<String> response = Unirest.post("https://mapi.storyblok.com/v1/spaces/606/branches/")
  .header("Content-Type", "application/json")
  .header("Authorization", "YOUR_OAUTH_TOKEN")
  .body("{\t\"branch\": {\t\t\"name\": \"Deployment\",\t\t\"space_id\": 273116,\t\t\"url\": \"https://preview-domain.com\"\t}}")
  .asString();
Request
var client = new RestClient("https://mapi.storyblok.com/v1/spaces/606/branches/");
var request = new RestRequest(Method.POST);

request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "YOUR_OAUTH_TOKEN");
request.AddParameter("application/json", "{\t\"branch\": {\t\t\"name\": \"Deployment\",\t\t\"space_id\": 273116,\t\t\"url\": \"https://preview-domain.com\"\t}}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Request
import Foundation

let headers = [
  "Content-Type": "application/json",
  "Authorization": "YOUR_OAUTH_TOKEN"
]

let postData = NSData(data: "{\t\"branch\": {\t\t\"name\": \"Deployment\",\t\t\"space_id\": 273116,\t\t\"url\": \"https://preview-domain.com\"\t}}".data(using: String.Encoding.utf8)!)
let request = NSMutableURLRequest(url: NSURL(string: "https://mapi.storyblok.com/v1/spaces/606/branches/")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0)

request.method = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
Request
import requests

url = "https://mapi.storyblok.com/v1/spaces/606/branches/"

querystring = {}

payload = "{\t\"branch\": {\t\t\"name\": \"Deployment\",\t\t\"space_id\": 273116,\t\t\"url\": \"https://preview-domain.com\"\t}}"
headers = {
  'Content-Type': "application/json",
  'Authorization': "YOUR_OAUTH_TOKEN"
}

response = requests.request("POST", url, data=payload, headers=headers, params=querystring)

print(response.text)

You will receive a branch object as a response.