Update a Branch
This endpoint updates a branch using its numeric ID.
https://mapi.storyblok.com/v1/spaces/:space_id/branches/:branch_id
Path Parameters
-
:space_id
required numberNumeric ID of a space
-
:branch_id
required numberNumeric ID of the branch
Request Body Properties
-
branch
The Branch Object-
name
stringBranch Name
-
source_id
number or nullSource of this branch
null
orid
of another branch -
url
stringPreview URL for this branch
-
position
numberNumeric 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\": 12345,\t\t\"url\": \"https://new_url.com/\",\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": 12345,
"url": "https://new_url.com/",
"position": 7
}
})
.then(response => {
console.log(response)
}).catch(error => {
console.log(error)
})
Request
$client = new \Storyblok\ManagementClient('YOUR_OAUTH_TOKEN');
$payload = [
"branch" => [
"name" => "Branche 123",
"source_id" => 12345,
"url" => "https => //new_url.com/",
"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" => 12345,
"url" => "https => //new_url.com/",
"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\": 12345,\t\t\"url\": \"https://new_url.com/\",\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\": 12345,\t\t\"url\": \"https://new_url.com/\",\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\": 12345,\t\t\"url\": \"https://new_url.com/\",\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\": 12345,\t\t\"url\": \"https://new_url.com/\",\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)