Retrieve a Single Release
Returns a single release object by providing a specific numeric ID.
https://mapi.storyblok.com/v1/spaces/:space_id/releases/:release_id
Path Parameters
-
:space_id
required numberNumeric ID of a space
-
:release_id
required numberNumeric ID of the release
Response Properties
-
release
The Release ObjectThe Release Object
-
name
stringName of the release
-
id
numberNumeric ID of a release
-
release_at
stringDate to deploy the release (Format: YYYY-mm-dd HH:MM)
-
released
booleanTrue if the release is released
-
uuid
stringUnique ID of the release
-
timezone
stringTimezone of the release
-
branches_to_deploy
number[]An array of branches (pipeline stages) to deploy the release to
-
created_at
stringDate and time the release was created (Format: YYYY-mm-dd HH:MM)
-
owner_id
numberNumeric ID of the release owner
-
users_to_notify_ids
number[]An array of user IDs who should be notified of the release
-
curl "https://mapi.storyblok.com/v1/spaces/606/releases/18" \
-X GET \
-H "Authorization: YOUR_OAUTH_TOKEN" \
-H "Content-Type: application/json"
// Using the Universal JavaScript Client:
// https://github.com/storyblok/storyblok-js-client
Storyblok.get('/spaces/606/releases/18', {})
.then(response => {
console.log(response)
}).catch(error => {
console.log(error)
})
$client = new \Storyblok\ManagementClient('YOUR_OAUTH_TOKEN');
$client->get('/spaces/606/releases/18')->getBody();
require 'storyblok'
client = Storyblok::Client.new(oauth_token: 'YOUR_OAUTH_TOKEN')
client.false('/spaces/606/releases/18')
HttpResponse<String> response = Unirest.get("https://mapi.storyblok.com/v1/spaces/606/releases/18")
.header("Authorization", "YOUR_OAUTH_TOKEN")
.asString();
var client = new RestClient("https://mapi.storyblok.com/v1/spaces/606/releases/18");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "YOUR_OAUTH_TOKEN");
IRestResponse response = client.Execute(request);
import Foundation
let headers = [
"Content-Type": "application/json",
"Authorization": "YOUR_OAUTH_TOKEN"
]
let request = NSMutableURLRequest(url: NSURL(string: "https://mapi.storyblok.com/v1/spaces/606/releases/18")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0)
request.method = "GET"
request.allHTTPHeaderFields = headers
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()
import requests
url = "https://mapi.storyblok.com/v1/spaces/606/releases/18"
querystring = {}
payload = ""
headers = {
'Content-Type': "application/json",
'Authorization': "YOUR_OAUTH_TOKEN"
}
response = requests.request("GET", url, data=payload, headers=headers, params=querystring)
print(response.text)