2020-07-30 08:09:33 -04:00
---
stage: Create
group: Editor
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-30 08:09:33 -04:00
type: reference, api
---
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 |
2020-10-30 11:08:59 -04:00
| `internal` | The snippet is visible for any logged in user except [external users ](../user/permissions.md#external-users ) |
2017-03-01 10:16:29 -05:00
| `public` | The snippet can be accessed without any authentication |
2015-05-03 08:56:00 -04:00
2020-12-04 16:09:29 -05:00
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
2020-05-21 02:08:25 -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:
2020-10-16 14:09:04 -04:00
| Attribute | Type | Required | Description |
|:------------------|:----------------|:---------|:----------------------------------------------------------------------------------------------------------------|
| `id` | integer | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user |
| `title` | string | yes | Title of a snippet |
| `file_name` | string | no | Deprecated: Use `files` instead. Name of a snippet file |
| `content` | string | no | Deprecated: Use `files` instead. Content of a snippet |
| `description` | string | no | Description of a snippet |
| `visibility` | string | no | Snippet's [visibility ](#snippet-visibility-level ) |
| `files` | array of hashes | no | An array of snippet files |
| `files:file_path` | string | yes | File path of the snippet file |
| `files:content` | string | yes | Content of the snippet file |
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-05-27 20:08:37 -04:00
curl --request POST "https://gitlab.com/api/v4/projects/:id/snippets" \
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" : "Example Snippet Title",
"description" : "More verbose snippet description",
2020-10-16 14:09:04 -04:00
"visibility" : "private",
"files": [
{
"file_path": "example.txt",
"content" : "source code \n with multiple lines\n",
}
]
2019-08-27 13:23:14 -04:00
}
```
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:
2020-10-16 14:09:04 -04:00
| Attribute | Type | Required | Description |
|:----------------------|:----------------|:---------|:----------------------------------------------------------------------------------------------------------------|
| `id` | integer | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user |
| `snippet_id` | integer | yes | The ID of a project's snippet |
| `title` | string | no | Title of a snippet |
| `file_name` | string | no | Deprecated: Use `files` instead. Name of a snippet file |
| `content` | string | no | Deprecated: Use `files` instead. Content of a snippet |
| `description` | string | no | Description of a snippet |
| `visibility` | string | no | Snippet's [visibility ](#snippet-visibility-level ) |
| `files` | array of hashes | no | An array of snippet files |
| `files:action` | string | yes | Type of action to perform on the file, one of: 'create', 'update', 'delete', 'move' |
| `files:file_path` | string | no | File path of the snippet file |
| `files:previous_path` | string | no | Previous path of the snippet file |
| `files:content` | string | no | Content of the snippet file |
Updates to snippets with multiple files *must* use the `files` attribute.
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-05-27 20:08:37 -04: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",
2020-10-16 14:09:04 -04:00
"visibility" : "private",
"files": [
{
"action": "update",
"file_path": "example.txt",
"content" : "updated source code \n with multiple lines\n"
}
]
2019-08-27 13:23:14 -04:00
}
```
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-05-27 20:08:37 -04: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-05-27 20:08:37 -04: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 > "
```
2020-07-09 08:08:56 -04:00
## Snippet repository file content
Returns the raw file content as plain text.
```plaintext
GET /projects/:id/snippets/:snippet_id/files/:ref/:file_path/raw
```
Parameters:
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
- `snippet_id` (required) - The ID of a project's snippet
2021-01-27 19:09:33 -05:00
- `ref` (required) - The name of a branch, tag or commit, such as `master`
- `file_path` (required) - The URL-encoded path to the file, such as `snippet%2Erb`
2020-07-09 08:08:56 -04:00
Example request:
```shell
curl "https://gitlab.com/api/v4/projects/1/snippets/2/files/master/snippet%2Erb/raw" \
--header "PRIVATE-TOKEN: < your_access_token > "
```
2017-07-07 09:18:01 -04:00
## Get user agent details
2020-05-21 02:08:25 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/29508) in GitLab 9.4.
2017-07-07 09:18:01 -04:00
2021-01-27 19:09:33 -05:00
Available only for users with Administrator [permissions ](../user/permissions.md ).
2017-07-07 09:18:01 -04:00
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-05-27 20:08:37 -04: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
}
```