Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2017-07-05 17:50:53 +0300
committerJames Lopez <james@jameslopez.es>2017-07-06 16:27:48 +0300
commitbd9b62114f77e024390c2dc0af4325c76e740a71 (patch)
treec19d9f4048e41e1681f537a5d7db565f4ef12475 /doc/api/snippets.md
parent6ee87aea89ef78e2e98df0e61225950446a822aa (diff)
add API documentation
Diffstat (limited to 'doc/api/snippets.md')
-rw-r--r--doc/api/snippets.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/api/snippets.md b/doc/api/snippets.md
index efaab712367..7be6cb3da2d 100644
--- a/doc/api/snippets.md
+++ b/doc/api/snippets.md
@@ -234,3 +234,27 @@ Example response:
}
]
```
+
+## Get user agent details
+
+```
+GET /snippets/:id/user_agent_detail
+```
+
+| Attribute | Type | Required | Description |
+|-------------|---------|----------|--------------------------------------|
+| `id` | Integer | yes | The ID of a snippet |
+
+```bash
+curl --request GET --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/snippets/1/user_agent_detail
+```
+
+Example response:
+
+```json
+{
+ "user_agent": "AppleWebKit/537.36",
+ "ip_address": "127.0.0.1",
+ "submitted": false,
+}
+```