Skip to content

Commit 02693b7

Browse files
committed
Explain iid in API
1 parent 12800e5 commit 02693b7

File tree

4 files changed

+24
-1
lines changed

4 files changed

+24
-1
lines changed

doc/api/README.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,30 @@ curl --header "PRIVATE-TOKEN: QVy1PB7sTxfy4pqfZM1U" --header "SUDO: username" "h
9696
curl --header "PRIVATE-TOKEN: QVy1PB7sTxfy4pqfZM1U" --header "SUDO: 23" "http://example.com/api/v3/projects"
9797
```
9898

99-
#### Pagination
99+
## Pagination
100100

101101
When listing resources you can pass the following parameters:
102102

103103
+ `page` (default: `1`) - page number
104104
+ `per_page` (default: `20`, max: `100`) - number of items to list per page
105105

106+
## id vs iid
107+
108+
When you work with API you may notice two similar fields in api entites: id and iid.
109+
The main difference between them is scope. Example:
110+
111+
Issue
112+
id: 46
113+
iid: 5
114+
115+
* id - is uniq across all Issues table. It used for any api calls.
116+
* iid - is uniq only in scope of single project. When you browse issues or merge requests with Web UI - you see iid.
117+
118+
So if you want to get issue with api you use `http://host/api/v3/.../issues/:id.json`
119+
But when you want to create a link to web page - use `http:://host/project/issues/:iid.json`
120+
121+
122+
106123
## Contents
107124

108125
+ [Users](users.md)

doc/api/issues.md

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ GET /issues
1111
[
1212
{
1313
"id": 43,
14+
"iid": 3,
1415
"project_id": 8,
1516
"title": "4xx/5xx pages",
1617
"description": "",
@@ -31,6 +32,7 @@ GET /issues
3132
},
3233
{
3334
"id": 42,
35+
"iid": 4,
3436
"project_id": 8,
3537
"title": "Add user settings",
3638
"description": "",
@@ -100,6 +102,7 @@ Parameters:
100102
```json
101103
{
102104
"id": 42,
105+
"iid": 3,
103106
"project_id": 8,
104107
"title": "Add user settings",
105108
"description": "",

doc/api/merge_requests.md

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Parameters:
1515
[
1616
{
1717
"id":1,
18+
"iid":1,
1819
"target_branch":"master",
1920
"source_branch":"test1",
2021
"project_id":3,
@@ -59,6 +60,7 @@ Parameters:
5960
```json
6061
{
6162
"id":1,
63+
"iid":1,
6264
"target_branch":"master",
6365
"source_branch":"test1",
6466
"project_id":3,

doc/api/milestones.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ GET /projects/:id/milestones
1010
[
1111
{
1212
"id":12,
13+
"iid":3,
1314
"project_id":16,
1415
"title":"10.0",
1516
"description":"Version",

0 commit comments

Comments
 (0)