1. Update a Branch

Update a Branch

spaces/:space_id/branches/:id

Path Parameters

  • :space_id

    number

    Numeric id of a space

  • :id

    number

    Branch ID

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/14" \ 
  -X PUT \
  -H "Authorization: YOUR_OAUTH_TOKEN" \
  -H "Content-Type: application/json" \
  -d "{\t\"branch\": {\t\t\"name\": \"Branche 123\",\t\t\"source_id\": null,\t\t\"deployed_at\": null,\t\t\"url\": null,\t\t\"position\": 7\t}}"
Request
// Using the Universal JavaScript Client:
// https://github.com/storyblok/storyblok-js-client
Storyblok.put('/spaces/606/branches/14', {
	"branch": {
		"name": "Branche 123",
		"source_id": null,
		"deployed_at": null,
		"url": null,
		"position": 7
	}
})
  .then(response => {
    console.log(response)
  }).catch(error => { 
    console.log(error)
  })
Request
$client = new \Storyblok\Client('YOUR_STORYBLOK_SPACE_ACCESS_TOKEN');

$payload = [
	"branch" =>  [
		"name" =>  "Branche 123",
		"source_id" =>  null,
		"deployed_at" =>  null,
		"url" =>  null,
		"position" =>  7
	]
];

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

payload = {
	"branch" =>  {
		"name" =>  "Branche 123",
		"source_id" =>  null,
		"deployed_at" =>  null,
		"url" =>  null,
		"position" =>  7
	}
}

client.put('/spaces/606/branches/14', payload)
Request
HttpResponse<String> response = Unirest.put("https://mapi.storyblok.com/v1/spaces/606/branches/14")
  .header("Content-Type", "application/json")
  .header("Authorization", "YOUR_OAUTH_TOKEN")
  .body("{\t\"branch\": {\t\t\"name\": \"Branche 123\",\t\t\"source_id\": null,\t\t\"deployed_at\": null,\t\t\"url\": null,\t\t\"position\": 7\t}}")
  .asString();
Request
var client = new RestClient("https://mapi.storyblok.com/v1/spaces/606/branches/14");
var request = new RestRequest(Method.PUT);

request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "YOUR_OAUTH_TOKEN");
request.AddParameter("application/json", "{\t\"branch\": {\t\t\"name\": \"Branche 123\",\t\t\"source_id\": null,\t\t\"deployed_at\": null,\t\t\"url\": null,\t\t\"position\": 7\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\": \"Branche 123\",\t\t\"source_id\": null,\t\t\"deployed_at\": null,\t\t\"url\": null,\t\t\"position\": 7\t}}".data(using: String.Encoding.utf8)!)

let request = NSMutableURLRequest(url: NSURL(string: "https://mapi.storyblok.com/v1/spaces/606/branches/14")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0)
request.method = "PUT"
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/14"

querystring = {}

payload = "{\t\"branch\": {\t\t\"name\": \"Branche 123\",\t\t\"source_id\": null,\t\t\"deployed_at\": null,\t\t\"url\": null,\t\t\"position\": 7\t}}"
headers = {
  'Content-Type': "application/json",
  'Authorization': "YOUR_OAUTH_TOKEN"
}

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

print(response.text)

You will receive a branch object as a response.