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
Example Object
{
"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"
]
}
}