2014-05-27 08:12:15 -04:00
# Project snippets
2015-05-03 08:56:00 -04:00
### Snippet visibility level
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
2012-08-25 12:21:11 -04:00
## List snippets
2012-10-08 05:13:53 -04:00
Get a list of project snippets.
```
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
```
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",
"web_url": "http://example.com/example/example/snippets/1"
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
```
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
2014-04-24 18:48:22 -04:00
- `code` (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
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
```
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
2014-04-24 18:48:22 -04:00
- `code` (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
## 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
```
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
## 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
```
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
## Get user agent details
> **Notes:**
> [Introduced][ce-29508] in GitLab 9.4.
Available only for admins.
```
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
```bash
2018-01-17 09:30:07 -05:00
curl --request GET --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" 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
}
```
2017-07-07 09:54:39 -04:00
2017-08-18 04:48:24 -04:00
[ce-29508]: https://gitlab.com/gitlab-org/gitlab-ce/issues/29508