2016-01-13 12:51:06 -05:00
# Build Variables
2016-01-07 08:10:49 -05:00
## List project variables
2016-01-13 16:44:11 -05:00
Get list of a project's build variables.
2016-01-07 08:10:49 -05:00
```
GET /projects/:id/variables
```
2016-01-13 14:23:48 -05:00
| Attribute | Type | required | Description |
|-----------|---------|----------|---------------------|
2017-04-08 05:21:11 -04:00
| `id` | integer/string | yes | The ID of a project or [urlencoded NAMESPACE/PROJECT_NAME of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user |
2016-01-13 14:23:48 -05:00
```
2017-03-01 12:39:40 -05:00
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/projects/1/variables"
2016-01-13 14:23:48 -05:00
```
2016-01-07 08:10:49 -05:00
```json
[
{
"key": "TEST_VARIABLE_1",
"value": "TEST_1"
},
{
"key": "TEST_VARIABLE_2",
"value": "TEST_2"
}
]
```
## Show variable details
2016-01-13 16:44:11 -05:00
Get the details of a project's specific build variable.
2016-01-07 08:10:49 -05:00
```
GET /projects/:id/variables/:key
```
2016-01-13 14:23:48 -05:00
| Attribute | Type | required | Description |
|-----------|---------|----------|-----------------------|
2017-04-08 05:21:11 -04:00
| `id` | integer/string | yes | The ID of a project or [urlencoded NAMESPACE/PROJECT_NAME of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user |
2016-01-13 16:44:11 -05:00
| `key` | string | yes | The `key` of a variable |
2016-01-13 14:23:48 -05:00
```
2017-03-01 12:39:40 -05:00
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/projects/1/variables/TEST_VARIABLE_1"
2016-01-13 14:23:48 -05:00
```
2016-01-07 08:10:49 -05:00
```json
{
"key": "TEST_VARIABLE_1",
"value": "TEST_1"
}
```
## Create variable
2016-01-13 16:44:11 -05:00
Create a new build variable.
2016-01-07 08:10:49 -05:00
```
POST /projects/:id/variables
```
2016-01-13 14:23:48 -05:00
| Attribute | Type | required | Description |
|-----------|---------|----------|-----------------------|
2017-04-08 05:21:11 -04:00
| `id` | integer/string | yes | The ID of a project or [urlencoded NAMESPACE/PROJECT_NAME of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user |
2016-01-13 16:44:11 -05:00
| `key` | string | yes | The `key` of a variable; must have no more than 255 characters; only `A-Z` , `a-z` , `0-9` , and `_` are allowed |
| `value` | string | yes | The `value` of a variable |
2016-01-13 14:23:48 -05:00
```
2017-03-01 12:39:40 -05:00
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/projects/1/variables" --form "key=NEW_VARIABLE" --form "value=new value"
2016-01-13 14:23:48 -05:00
```
2016-01-07 08:10:49 -05:00
```json
{
"key": "NEW_VARIABLE",
"value": "new value"
}
```
## Update variable
2016-01-13 16:44:11 -05:00
Update a project's build variable.
2016-01-07 08:10:49 -05:00
```
PUT /projects/:id/variables/:key
```
2016-01-13 14:23:48 -05:00
| Attribute | Type | required | Description |
|-----------|---------|----------|-------------------------|
2017-04-08 05:21:11 -04:00
| `id` | integer/string | yes | The ID of a project or [urlencoded NAMESPACE/PROJECT_NAME of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user |
2016-01-13 16:44:11 -05:00
| `key` | string | yes | The `key` of a variable |
| `value` | string | yes | The `value` of a variable |
2016-01-13 14:23:48 -05:00
```
2017-03-01 12:39:40 -05:00
curl --request PUT --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/projects/1/variables/NEW_VARIABLE" --form "value=updated value"
2016-01-13 14:23:48 -05:00
```
2016-01-07 08:10:49 -05:00
```json
{
"key": "NEW_VARIABLE",
"value": "updated value"
}
```
## Remove variable
2016-01-13 16:44:11 -05:00
Remove a project's build variable.
2016-01-07 08:10:49 -05:00
```
DELETE /projects/:id/variables/:key
```
2016-01-13 14:23:48 -05:00
| Attribute | Type | required | Description |
|-----------|---------|----------|-------------------------|
2017-04-08 05:21:11 -04:00
| `id` | integer/string | yes | The ID of a project or [urlencoded NAMESPACE/PROJECT_NAME of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user |
2016-01-13 16:44:11 -05:00
| `key` | string | yes | The `key` of a variable |
2016-01-13 14:23:48 -05:00
```
2017-03-01 12:39:40 -05:00
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/projects/1/variables/VARIABLE_1"
2016-01-13 14:23:48 -05:00
```