The Release Object
This is an object representing a release inside Storyblok.
Properties
-
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
-
public
booleanThe access level of the release: Public or Restricted. The default value is
true
(public).Only the release owner or the space owner can modify this field.
-
allowed_user_ids
number[]An array of user IDs who are allowed to access and interact with the release.
Only the release owner or the space owner can modify this field.
-
allowed_space_role_ids
number[]An array of space role IDs that are allowed to access and interact with the release.
Only the release owner or the space owner can modify this field.
-
allowed_api_key_ids
number[]To associate an access token with a release, the token access type must be
release
.Only the release owner or the space owner can modify this field.
{
"release": {
"name": "A Winter Special Release",
"id": 123212,
"release_at": null,
"released": false,
"uuid": "f4ea2f30-4645-4164-9826-3860215f0caq",
"timezone": "America/Bahia",
"branches_to_deploy": [
32324
],
"created_at": "2023-08-23T11:57:15.188Z",
"owner_id": 444444,
"users_to_notify_ids": [
"444444"
],
"public": false,
"allowed_user_ids": [
444444
],
"allowed_space_role_ids": [
12345678901234
],
"allowed_api_key_ids": [
12345678904321
]
}
}