2020-07-13 17:09:24 -04:00
---
stage: Release
2020-12-01 10:09:28 -05:00
group: Release
2020-11-26 01:09:20 -05:00
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2020-07-13 17:09:24 -04:00
type: concepts, howto
---
2021-09-09 11:09:24 -04:00
# Freeze Periods API **(FREE)**
2020-05-15 23:08:23 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/29382) in GitLab 13.0.
2020-12-15 19:09:58 -05:00
You can use the Freeze Periods API to manipulate GitLab [Freeze Period ](../user/project/releases/index.md#prevent-unintentional-releases-by-setting-a-deploy-freeze ) entries.
2020-05-15 23:08:23 -04:00
## Permissions and security
Only users with Maintainer [permissions ](../user/permissions.md ) can
interact with the Freeze Period API endpoints.
## List Freeze Periods
2020-05-19 14:08:11 -04:00
Paginated list of Freeze Periods, sorted by `created_at` in ascending order.
2020-05-15 23:08:23 -04:00
```plaintext
GET /projects/:id/freeze_periods
```
| Attribute | Type | Required | Description |
| ------------- | -------------- | -------- | ----------------------------------------------------------------------------------- |
2021-06-28 11:08:03 -04:00
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ). |
2020-05-15 23:08:23 -04:00
Example request:
```shell
2020-09-03 14:08:29 -04:00
curl --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/projects/19/freeze_periods"
2020-05-15 23:08:23 -04:00
```
Example response:
```json
[
{
"id":1,
"freeze_start":"0 23 * * 5",
"freeze_end":"0 8 * * 1",
"cron_timezone":"UTC",
"created_at":"2020-05-15T17:03:35.702Z",
"updated_at":"2020-05-15T17:06:41.566Z"
}
]
```
## Get a Freeze Period by a `freeze_period_id`
Get a Freeze Period for the given `freeze_period_id` .
```plaintext
GET /projects/:id/freeze_periods/:freeze_period_id
```
| Attribute | Type | Required | Description |
| ------------- | -------------- | -------- | ----------------------------------------------------------------------------------- |
2021-06-28 11:08:03 -04:00
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ). |
2020-05-15 23:08:23 -04:00
| `freeze_period_id` | string | yes | The database ID of the Freeze Period. |
Example request:
```shell
2020-09-03 14:08:29 -04:00
curl --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/projects/19/freeze_periods/1"
2020-05-15 23:08:23 -04:00
```
Example response:
```json
{
"id":1,
"freeze_start":"0 23 * * 5",
"freeze_end":"0 8 * * 1",
"cron_timezone":"UTC",
"created_at":"2020-05-15T17:03:35.702Z",
"updated_at":"2020-05-15T17:06:41.566Z"
}
```
## Create a Freeze Period
Create a Freeze Period.
```plaintext
POST /projects/:id/freeze_periods
```
| Attribute | Type | Required | Description |
| -------------------| --------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------- |
2021-06-28 11:08:03 -04:00
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ). |
2020-05-15 23:08:23 -04:00
| `freeze_start` | string | yes | Start of the Freeze Period in [cron ](https://crontab.guru/ ) format. |
| `freeze_end` | string | yes | End of the Freeze Period in [cron ](https://crontab.guru/ ) format. |
2021-09-23 18:34:10 -04:00
| `cron_timezone` | string | no | The time zone for the cron fields, defaults to UTC if not provided. |
2020-05-15 23:08:23 -04:00
Example request:
```shell
2020-09-03 14:08:29 -04:00
curl --header 'Content-Type: application/json' --header "PRIVATE-TOKEN: < your_access_token > " \
2020-05-15 23:08:23 -04:00
--data '{ "freeze_start": "0 23 * * 5", "freeze_end": "0 7 * * 1", "cron_timezone": "UTC" }' \
2020-12-08 04:09:41 -05:00
--request POST "https://gitlab.example.com/api/v4/projects/19/freeze_periods"
2020-05-15 23:08:23 -04:00
```
Example response:
```json
{
"id":1,
"freeze_start":"0 23 * * 5",
"freeze_end":"0 7 * * 1",
"cron_timezone":"UTC",
"created_at":"2020-05-15T17:03:35.702Z",
"updated_at":"2020-05-15T17:03:35.702Z"
}
```
## Update a Freeze Period
Update a Freeze Period for the given `freeze_period_id` .
```plaintext
2021-07-29 02:10:15 -04:00
PUT /projects/:id/freeze_periods/:freeze_period_id
2020-05-15 23:08:23 -04:00
```
| Attribute | Type | Required | Description |
| ------------- | --------------- | -------- | ----------------------------------------------------------------------------------------------------------- |
2021-06-28 11:08:03 -04:00
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ). |
2020-05-15 23:08:23 -04:00
| `freeze_period_id` | integer or string | yes | The database ID of the Freeze Period. |
| `freeze_start` | string | no | Start of the Freeze Period in [cron ](https://crontab.guru/ ) format. |
| `freeze_end` | string | no | End of the Freeze Period in [cron ](https://crontab.guru/ ) format. |
2021-09-23 18:34:10 -04:00
| `cron_timezone` | string | no | The time zone for the cron fields. |
2020-05-15 23:08:23 -04:00
Example request:
```shell
2020-09-03 14:08:29 -04:00
curl --header 'Content-Type: application/json' --header "PRIVATE-TOKEN: < your_access_token > " \
2020-05-15 23:08:23 -04:00
--data '{ "freeze_end": "0 8 * * 1" }' \
2020-12-09 01:09:41 -05:00
--request PUT "https://gitlab.example.com/api/v4/projects/19/freeze_periods/1"
2020-05-15 23:08:23 -04:00
```
Example response:
```json
{
"id":1,
"freeze_start":"0 23 * * 5",
"freeze_end":"0 8 * * 1",
"cron_timezone":"UTC",
"created_at":"2020-05-15T17:03:35.702Z",
"updated_at":"2020-05-15T17:06:41.566Z"
}
```
## Delete a Freeze Period
Delete a Freeze Period for the given `freeze_period_id` .
```plaintext
DELETE /projects/:id/freeze_periods/:freeze_period_id
```
| Attribute | Type | Required | Description |
| ------------- | -------------- | -------- | ----------------------------------------------------------------------------------- |
2021-06-28 11:08:03 -04:00
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ). |
2020-05-15 23:08:23 -04:00
| `freeze_period_id` | string | yes | The database ID of the Freeze Period. |
Example request:
```shell
2020-09-03 14:08:29 -04:00
curl --request DELETE --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/projects/19/freeze_periods/1"
2020-05-15 23:08:23 -04:00
```