2014-05-27 08:12:15 -04:00
# Project snippets
2019-07-08 07:07:07 -04:00
## Snippet visibility level
2015-05-03 08:56:00 -04:00
Snippets in GitLab can be either private, internal or public.
2017-03-01 10:16:29 -05:00
You can set it with the `visibility` field in the snippet.
2015-05-03 08:56:00 -04:00
Constants for snippet visibility levels are:
2017-03-01 10:16:29 -05:00
| visibility | Description |
| ---------- | ----------- |
| `private` | The snippet is visible only the snippet creator |
| `internal` | The snippet is visible for any logged in user |
| `public` | The snippet can be accessed without any authentication |
2015-05-03 08:56:00 -04:00
2019-07-02 21:41:50 -04:00
NOTE: **Note:**
2019-07-08 07:07:07 -04:00
From July 2019, the `Internal` visibility setting is disabled for new projects, groups,
2019-07-02 21:41:50 -04:00
and snippets on GitLab.com. Existing projects, groups, and snippets using the `Internal`
visibility setting keep this setting. You can read more about the change in the
2019-09-18 10:02:45 -04:00
[relevant issue ](https://gitlab.com/gitlab-org/gitlab/issues/12388 ).
2019-07-02 21:41:50 -04:00
2012-08-25 12:21:11 -04:00
## List snippets
2012-10-08 05:13:53 -04:00
Get a list of project snippets.
2020-02-27 19:09:08 -05:00
```plaintext
2012-10-08 05:13:53 -04:00
GET /projects/:id/snippets
```
Parameters:
2017-04-08 04:54:00 -04:00
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2013-02-21 15:13:46 -05:00
2012-08-25 12:21:11 -04:00
## Single snippet
2013-02-21 15:13:46 -05:00
Get a single project snippet.
2012-08-25 12:21:11 -04:00
2020-02-27 19:09:08 -05:00
```plaintext
2012-08-25 12:21:11 -04:00
GET /projects/:id/snippets/:snippet_id
```
Parameters:
2017-04-08 04:54:00 -04:00
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2014-04-24 18:48:22 -04:00
- `snippet_id` (required) - The ID of a project's snippet
2012-08-25 12:21:11 -04:00
```json
{
"id": 1,
"title": "test",
"file_name": "add.rb",
2017-05-03 11:26:49 -04:00
"description": "Ruby test snippet",
2012-08-25 12:21:11 -04:00
"author": {
"id": 1,
2012-12-10 17:46:31 -05:00
"username": "john_smith",
2012-08-25 12:21:11 -04:00
"email": "john@example.com",
"name": "John Smith",
2013-10-02 05:04:51 -04:00
"state": "active",
2012-08-25 12:21:11 -04:00
"created_at": "2012-05-23T08:00:58Z"
},
"updated_at": "2012-06-28T10:52:04Z",
2016-08-02 13:37:04 -04:00
"created_at": "2012-06-28T10:52:04Z",
2020-04-21 11:21:10 -04:00
"project_id": 1,
"web_url": "http://example.com/example/example/snippets/1",
"raw_url": "http://example.com/example/example/snippets/1/raw"
2012-08-25 12:21:11 -04:00
}
```
2013-02-21 15:13:46 -05:00
## Create new snippet
2012-08-25 12:21:11 -04:00
2013-03-07 08:51:56 -05:00
Creates a new project snippet. The user must have permission to create new snippets.
2012-08-25 12:21:11 -04:00
2020-02-27 19:09:08 -05:00
```plaintext
2012-08-25 12:21:11 -04:00
POST /projects/:id/snippets
```
Parameters:
2017-04-08 04:54:00 -04:00
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2014-04-24 18:48:22 -04:00
- `title` (required) - The title of a snippet
- `file_name` (required) - The name of a snippet file
2017-05-03 11:26:49 -04:00
- `description` (optional) - The description of a snippet
2019-10-16 02:07:06 -04:00
- `content` (required) - The content of a snippet
2017-05-29 03:54:35 -04:00
- `visibility` (required) - The snippet's visibility
2012-08-25 12:21:11 -04:00
2019-08-27 13:23:14 -04:00
Example request:
2020-01-30 10:09:15 -05:00
```shell
2019-08-27 13:23:14 -04:00
curl --request POST https://gitlab.com/api/v4/projects/:id/snippets \
--header "PRIVATE-TOKEN: < your access token > " \
--header "Content-Type: application/json" \
2019-08-27 16:00:37 -04:00
-d @snippet .json
2019-08-27 13:23:14 -04:00
```
`snippet.json` used in the above example request:
```json
{
"title" : "Example Snippet Title",
"description" : "More verbose snippet description",
"file_name" : "example.txt",
2019-10-16 02:07:06 -04:00
"content" : "source code \n with multiple lines\n",
2019-08-27 13:23:14 -04:00
"visibility" : "private"
}
```
2013-03-07 08:51:56 -05:00
## Update snippet
2012-08-25 12:21:11 -04:00
2013-03-07 08:51:56 -05:00
Updates an existing project snippet. The user must have permission to change an existing snippet.
2012-08-25 12:21:11 -04:00
2020-02-27 19:09:08 -05:00
```plaintext
2012-08-25 12:21:11 -04:00
PUT /projects/:id/snippets/:snippet_id
```
Parameters:
2017-04-08 04:54:00 -04:00
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2014-04-24 18:48:22 -04:00
- `snippet_id` (required) - The ID of a project's snippet
- `title` (optional) - The title of a snippet
- `file_name` (optional) - The name of a snippet file
2017-05-03 11:26:49 -04:00
- `description` (optional) - The description of a snippet
2019-10-16 02:07:06 -04:00
- `content` (optional) - The content of a snippet
2017-03-01 10:16:29 -05:00
- `visibility` (optional) - The snippet's visibility
2012-08-25 12:21:11 -04:00
2019-08-27 13:23:14 -04:00
Example request:
2020-01-30 10:09:15 -05:00
```shell
2020-02-25 01:09:07 -05:00
curl --request PUT https://gitlab.com/api/v4/projects/:id/snippets/:snippet_id \
2019-08-27 13:23:14 -04:00
--header "PRIVATE-TOKEN: < your_access_token > " \
--header "Content-Type: application/json" \
2019-08-27 16:00:37 -04:00
-d @snippet .json
2019-08-27 13:23:14 -04:00
```
`snippet.json` used in the above example request:
```json
{
"title" : "Updated Snippet Title",
"description" : "More verbose snippet description",
"file_name" : "new_filename.txt",
2019-10-16 02:07:06 -04:00
"content" : "updated source code \n with multiple lines\n",
2019-08-27 13:23:14 -04:00
"visibility" : "private"
}
```
2012-08-25 12:21:11 -04:00
## Delete snippet
2017-09-06 03:15:34 -04:00
Deletes an existing project snippet. This returns a `204 No Content` status code if the operation was successfully or `404` if the resource was not found.
2012-08-25 12:21:11 -04:00
2020-02-27 19:09:08 -05:00
```plaintext
2012-08-25 12:21:11 -04:00
DELETE /projects/:id/snippets/:snippet_id
```
Parameters:
2017-04-08 04:54:00 -04:00
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2014-04-24 18:48:22 -04:00
- `snippet_id` (required) - The ID of a project's snippet
2013-02-21 15:13:46 -05:00
2019-08-27 13:23:14 -04:00
Example request:
2020-01-30 10:09:15 -05:00
```shell
2020-02-25 01:09:07 -05:00
curl --request DELETE https://gitlab.com/api/v4/projects/:id/snippets/:snippet_id \
2019-08-27 13:23:14 -04:00
--header "PRIVATE-TOKEN: < your_access_token > "
```
2013-02-21 15:13:46 -05:00
## Snippet content
2013-03-07 08:51:56 -05:00
Returns the raw project snippet as plain text.
2013-02-21 15:13:46 -05:00
2020-02-27 19:09:08 -05:00
```plaintext
2013-02-21 15:13:46 -05:00
GET /projects/:id/snippets/:snippet_id/raw
```
Parameters:
2017-04-08 04:54:00 -04:00
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2014-04-24 18:48:22 -04:00
- `snippet_id` (required) - The ID of a project's snippet
2017-07-07 09:18:01 -04:00
2019-08-27 13:23:14 -04:00
Example request:
2020-01-30 10:09:15 -05:00
```shell
2020-02-17 22:08:54 -05:00
curl https://gitlab.com/api/v4/projects/:id/snippets/:snippet_id/raw \
2019-08-27 13:23:14 -04:00
--header "PRIVATE-TOKEN: < your_access_token > "
```
2017-07-07 09:18:01 -04:00
## Get user agent details
2020-03-31 23:07:57 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/issues/29508) in GitLab 9.4.
2017-07-07 09:18:01 -04:00
Available only for admins.
2020-02-27 19:09:08 -05:00
```plaintext
2017-07-07 09:18:01 -04:00
GET /projects/:id/snippets/:snippet_id/user_agent_detail
```
2018-01-17 09:30:07 -05:00
| Attribute | Type | Required | Description |
|---------------|---------|----------|--------------------------------------|
| `id` | Integer | yes | The ID of a project |
| `snippet_id` | Integer | yes | The ID of a snippet |
2017-07-07 09:18:01 -04:00
2019-08-27 13:23:14 -04:00
Example request:
2020-01-30 10:09:15 -05:00
```shell
2020-02-17 22:08:54 -05:00
curl --header "PRIVATE-TOKEN: < your_access_token > " https://gitlab.example.com/api/v4/projects/1/snippets/2/user_agent_detail
2017-07-07 09:18:01 -04:00
```
Example response:
```json
{
"user_agent": "AppleWebKit/537.36",
"ip_address": "127.0.0.1",
"akismet_submitted": false
}
```