- スニペットの可視レベル
- 現在のユーザーのスニペット一覧を表示します。
- 単一のスニペットの取得
- 単一のスニペットコンテンツ
- スニペットリポジトリファイルの内容
- 新しいスニペットの作成
- スニペットの更新
- スニペットの削除
- すべての公開スニペット一覧
- すべてのスニペットのリスト
- ユーザーエージェントの詳細の取得
スニペットAPI
スニペットAPIはスニペットに関するオペレーションを行います。スニペットをプロジェクト化したり、ストレージ間でスニペットを移動したりするための関連APIがあります。
スニペットの可視レベル
GitLabのスニペットには、非公開、内部、公開のいずれかがあります。スニペット内のvisibility
フィールドで設定できます。
スニペット可視レベルの有効な値は以下の通りです:
可視性 | 説明 |
---|---|
private | スニペットはスニペット作成者にのみ表示されます。 |
internal | スニペットは、外部ユーザーを除く、認証されたすべてのユーザーに表示されます。 |
public | スニペットには認証なしでアクセスできます。 |
現在のユーザーのスニペット一覧を表示します。
現在のユーザーのスニペット一覧を取得します。
GET /snippets
パラメータを指定します:
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
per_page | 整数。 | いいえ | ページごとに返すスニペット数。 |
page | 整数。 | いいえ | 取得するPages。 |
created_after | datetime | いいえ | 指定された時間以降に作成されたスニペットを返します。ISO 8601 形式 (2019-03-15T08:00:00Z ) で返されます。 |
created_before | datetime | いいえ | 指定された時間以前に作成されたスニペットを返します。ISO 8601 形式 (2019-03-15T08:00:00Z ) で返されます。 |
リクエストの例
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/snippets"
応答例
[
{
"id": 42,
"title": "Voluptatem iure ut qui aut et consequatur quaerat.",
"file_name": "mclaughlin.rb",
"description": null,
"visibility": "internal",
"author": {
"id": 22,
"name": "User 0",
"username": "user0",
"state": "active",
"avatar_url": "https://www.gravatar.com/avatar/52e4ce24a915fb7e51e1ad3b57f4b00a?s=80&d=identicon",
"web_url": "http://example.com/user0"
},
"updated_at": "2018-09-18T01:12:26.383Z",
"created_at": "2018-09-18T01:12:26.383Z",
"project_id": null,
"web_url": "http://example.com/snippets/42",
"raw_url": "http://example.com/snippets/42/raw"
},
{
"id": 41,
"title": "Ut praesentium non et atque.",
"file_name": "ondrickaemard.rb",
"description": null,
"visibility": "internal",
"author": {
"id": 22,
"name": "User 0",
"username": "user0",
"state": "active",
"avatar_url": "https://www.gravatar.com/avatar/52e4ce24a915fb7e51e1ad3b57f4b00a?s=80&d=identicon",
"web_url": "http://example.com/user0"
},
"updated_at": "2018-09-18T01:12:26.360Z",
"created_at": "2018-09-18T01:12:26.360Z",
"project_id": 1,
"web_url": "http://example.com/gitlab-org/gitlab-test/snippets/41",
"raw_url": "http://example.com/gitlab-org/gitlab-test/snippets/41/raw"
}
]
単一のスニペットの取得
スニペット1つを取得します。
GET /snippets/:id
パラメータを指定します:
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数。 | yes | 取得するスニペットのID。 |
リクエストの例
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/snippets/1"
応答例
{
"id": 1,
"title": "test",
"file_name": "add.rb",
"description": "Ruby test snippet",
"visibility": "private",
"author": {
"id": 1,
"username": "john_smith",
"email": "john@example.com",
"name": "John Smith",
"state": "active",
"created_at": "2012-05-23T08:00:58Z"
},
"expires_at": null,
"updated_at": "2012-06-28T10:52:04Z",
"created_at": "2012-06-28T10:52:04Z",
"project_id": null,
"web_url": "http://example.com/snippets/1",
"raw_url": "http://example.com/snippets/1/raw"
}
単一のスニペットコンテンツ
単一のスニペットの生のコンテンツを取得します。
GET /snippets/:id/raw
パラメータを指定します:
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数。 | yes | 取得するスニペットのID。 |
リクエストの例
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/snippets/1/raw"
応答例
Hello World snippet
スニペットリポジトリファイルの内容
ファイルの内容をプレーンテキストで返します。
GET /snippets/:id/files/:ref/:file_path/raw
パラメータを指定します:
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数。 | yes | 取得するスニペットのID。 |
ref | 文字列です。 | yes | タグ、ブランチ、コミットへの参照。 |
file_path | 文字列です。 | yes | ファイルへの URL エンコードされたパス。 |
リクエストの例
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/snippets/1/files/master/snippet%2Erb/raw"
応答例
Hello World snippet
新しいスニペットの作成
新しいスニペットを作成します。
POST /snippets
パラメータを指定します:
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
title | 文字列です。 | yes | スニペットのタイトル |
file_name | 文字列です。 | いいえ | 非推奨:代わりにfiles 。スニペットファイル名 |
content | 文字列です。 | いいえ | 非推奨:代わりにfiles 。スニペットの内容 |
description | 文字列です。 | いいえ | スニペットの説明 |
visibility | 文字列です。 | いいえ | スニペットの可視性 |
files | ハッシュの配列 | いいえ | スニペットファイルの配列 |
files:file_path | 文字列です。 | yes | スニペットファイルのファイルパス |
files:content | 文字列です。 | yes | スニペットファイルの内容 |
リクエストの例
curl --request POST "https://gitlab.example.com/api/v4/snippets" \
--header 'Content-Type: application/json' \
--header "PRIVATE-TOKEN: <your_access_token>" \
-d @snippet.json
snippet.json
上記のリクエスト例で使用されています:
{
"title": "This is a snippet",
"description": "Hello World snippet",
"visibility": "internal",
"files": [
{
"content": "Hello world",
"file_path": "test.txt"
}
]
}
応答例
{
"id": 1,
"title": "This is a snippet",
"description": "Hello World snippet",
"visibility": "internal",
"author": {
"id": 1,
"username": "john_smith",
"email": "john@example.com",
"name": "John Smith",
"state": "active",
"created_at": "2012-05-23T08:00:58Z"
},
"expires_at": null,
"updated_at": "2012-06-28T10:52:04Z",
"created_at": "2012-06-28T10:52:04Z",
"project_id": null,
"web_url": "http://example.com/snippets/1",
"raw_url": "http://example.com/snippets/1/raw",
"ssh_url_to_repo": "ssh://git@gitlab.example.com:snippets/1.git",
"http_url_to_repo": "https://gitlab.example.com/snippets/1.git",
"file_name": "test.txt",
"files": [
{
"path": "text.txt",
"raw_url": "https://gitlab.example.com/-/snippets/1/raw/master/renamed.md"
}
]
}
スニペットの更新
既存のスニペットを更新します。
PUT /snippets/:id
パラメータを指定します:
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数。 | yes | 更新するスニペットのID |
title | 文字列です。 | いいえ | スニペットのタイトル |
file_name | 文字列です。 | いいえ | 非推奨:代わりにfiles 。スニペットファイル名 |
content | 文字列です。 | いいえ | 非推奨:代わりにfiles 。スニペットの内容 |
description | 文字列です。 | いいえ | スニペットの説明 |
visibility | 文字列です。 | いいえ | スニペットの可視性 |
files | ハッシュの配列 | 時々 | スニペットファイルの配列。複数のファイルでスニペットを更新するときに必要です。 |
files:action | 文字列です。 | yes | ファイルに対して実行するアクションの種類:create update ,delete 、move
|
files:file_path | 文字列です。 | いいえ | スニペットファイルのファイルパス |
files:previous_path | 文字列です。 | いいえ | スニペットファイルの前のパス |
files:content | 文字列です。 | いいえ | スニペットファイルの内容 |
リクエストの例
curl --request PUT "https://gitlab.example.com/api/v4/snippets/1" \
--header 'Content-Type: application/json' \
--header "PRIVATE-TOKEN: <your_access_token>" \
-d @snippet.json
snippet.json
上記のリクエスト例で使用されています:
{
"title": "foo",
"files": [
{
"action": "move",
"previous_path": "test.txt",
"file_path": "renamed.md"
}
]
}
応答例
{
"id": 1,
"title": "test",
"description": "description of snippet",
"visibility": "internal",
"author": {
"id": 1,
"username": "john_smith",
"email": "john@example.com",
"name": "John Smith",
"state": "active",
"created_at": "2012-05-23T08:00:58Z"
},
"expires_at": null,
"updated_at": "2012-06-28T10:52:04Z",
"created_at": "2012-06-28T10:52:04Z",
"project_id": null,
"web_url": "http://example.com/snippets/1",
"raw_url": "http://example.com/snippets/1/raw",
"ssh_url_to_repo": "ssh://git@gitlab.example.com:snippets/1.git",
"http_url_to_repo": "https://gitlab.example.com/snippets/1.git",
"file_name": "renamed.md",
"files": [
{
"path": "renamed.md",
"raw_url": "https://gitlab.example.com/-/snippets/1/raw/master/renamed.md"
}
]
}
スニペットの削除
既存のスニペットを削除します。
DELETE /snippets/:id
パラメータを指定します:
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数。 | yes | 削除するスニペットのID。 |
リクエストの例
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/snippets/1"
可能なリターンコードは以下のとおりです:
コード | 説明 |
---|---|
204 | 削除に成功しました。データは返されません。 |
404 | スニペットが見つかりませんでした。 |
すべての公開スニペット一覧
すべての公開スニペットを一覧表示します。
GET /snippets/public
パラメータを指定します:
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
per_page | 整数。 | いいえ | ページごとに返すスニペット数。 |
page | 整数。 | いいえ | 取得するPages。 |
created_after | datetime | いいえ | 指定された時間以降に作成されたスニペットを返します。ISO 8601 形式 (2019-03-15T08:00:00Z ) で返されます。 |
created_before | datetime | いいえ | 指定された時間以前に作成されたスニペットを返します。ISO 8601 形式 (2019-03-15T08:00:00Z ) で返されます。 |
リクエストの例
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/snippets/public?per_page=2&page=1"
応答例
[
{
"author": {
"avatar_url": "http://www.gravatar.com/avatar/edaf55a9e363ea263e3b981d09e0f7f7?s=80&d=identicon",
"id": 12,
"name": "Libby Rolfson",
"state": "active",
"username": "elton_wehner",
"web_url": "http://example.com/elton_wehner"
},
"created_at": "2016-11-25T16:53:34.504Z",
"file_name": "oconnerrice.rb",
"id": 49,
"title": "Ratione cupiditate et laborum temporibus.",
"updated_at": "2016-11-25T16:53:34.504Z",
"project_id": null,
"web_url": "http://example.com/snippets/49",
"raw_url": "http://example.com/snippets/49/raw"
},
{
"author": {
"avatar_url": "http://www.gravatar.com/avatar/36583b28626de71061e6e5a77972c3bd?s=80&d=identicon",
"id": 16,
"name": "Llewellyn Flatley",
"state": "active",
"username": "adaline",
"web_url": "http://example.com/adaline"
},
"created_at": "2016-11-25T16:53:34.479Z",
"file_name": "muellershields.rb",
"id": 48,
"title": "Minus similique nesciunt vel fugiat qui ullam sunt.",
"updated_at": "2016-11-25T16:53:34.479Z",
"project_id": null,
"web_url": "http://example.com/snippets/48",
"raw_url": "http://example.com/snippets/49/raw",
"visibility": "public"
}
]
すべてのスニペットのリスト
GitLab 16.3 で導入されました。
現在のユーザーがアクセスできる全てのスニペットを一覧表示します。管理者または監査役のアクセスレベルを持つユーザーは、すべてのスニペット(個人とプロジェクトの両方)を見ることができます。
GET /snippets/all
パラメータを指定します:
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
created_after | datetime | いいえ | 指定された時間以降に作成されたスニペットを返します。ISO 8601 形式 (2019-03-15T08:00:00Z ) で返されます。 |
created_before | datetime | いいえ | 指定された時間以前に作成されたスニペットを返します。ISO 8601 フォーマット (2019-03-15T08:00:00Z ) で返されます。 |
page | 整数。 | いいえ | 取得するPages。 |
per_page | 整数。 | いいえ | ページごとに返すスニペット数。 |
repository_storage | 文字列です。 | いいえ | スニペットで使用されているリポジトリストレージでフィルタリングします_(管理者のみ)_。GitLab 16.3 で導入されました。 |
リクエストの例
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/snippets/all?per_page=2&page=1"
応答例
[
{
"id": 113,
"title": "Internal Project Snippet",
"description": null,
"visibility": "internal",
"author": {
"id": 17,
"username": "tim_kreiger",
"name": "Tim Kreiger",
"state": "active",
"avatar_url": "http://www.gravatar.com/avatar/edaf55a9e363ea263e3b981d09e0f7f7?s=80&d=identicon",
"web_url": "http://example.com/tim_kreiger"
},
"created_at": "2023-08-03T10:21:02.480Z",
"updated_at": "2023-08-03T10:21:02.480Z",
"project_id": 35,
"web_url": "http://example.com/tim_kreiger/internal_project/-/snippets/113",
"raw_url": "http://example.com/tim_kreiger/internal_project/-/snippets/113/raw",
"file_name": "",
"files": [],
"repository_storage": "default"
},
{
"id": 112,
"title": "Private Personal Snippet",
"description": null,
"visibility": "private",
"author": {
"id": 1,
"username": "root",
"name": "Administrator",
"state": "active",
"avatar_url": "http://www.gravatar.com/avatar/edaf55a9e363ea263e3b981d09e0f7f7?s=80&d=identicon",
"web_url": "http://example.com/root"
},
"created_at": "2023-08-03T10:20:59.994Z",
"updated_at": "2023-08-03T10:20:59.994Z",
"project_id": null,
"web_url": "http://example.com/-/snippets/112",
"raw_url": "http://example.com/-/snippets/112/raw",
"file_name": "",
"files": [],
"repository_storage": "default"
},
{
"id": 111,
"title": "Public Personal Snippet",
"description": null,
"visibility": "public",
"author": {
"id": 17,
"username": "tim_kreiger",
"name": "Tim Kreiger",
"state": "active",
"avatar_url": "http://www.gravatar.com/avatar/edaf55a9e363ea263e3b981d09e0f7f7?s=80&d=identicon",
"web_url": "http://example.com/tim_kreiger"
},
"created_at": "2023-08-03T10:21:01.312Z",
"updated_at": "2023-08-03T10:21:01.312Z",
"project_id": null,
"web_url": "http://example.com/-/snippets/111",
"raw_url": "http://example.com/-/snippets/111/raw",
"file_name": "",
"files": [],
"repository_storage": "default"
},
]
ユーザーエージェントの詳細の取得
GET /snippets/:id/user_agent_detail
属性 | 種類 | 必須 | 説明 |
---|---|---|---|
id | 整数。 | yes | スニペットのID。 |
リクエストの例
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/snippets/1/user_agent_detail"
応答例
{
"user_agent": "AppleWebKit/537.36",
"ip_address": "127.0.0.1",
"akismet_submitted": false
}