Skip to content

Commit 9580908

Browse files
authored
feat: Optional user id parameter for PUT files/folders/web_links (#486)
1 parent 1d5bb92 commit 9580908

File tree

1 file changed

+36
-1
lines changed

1 file changed

+36
-1
lines changed

openapi.json

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"url": "http://www.apache.org/licenses/LICENSE-2.0"
1515
},
1616
"version": "2.0.0",
17-
"x-box-commit-hash": "324e40ffd7"
17+
"x-box-commit-hash": "185890637d"
1818
},
1919
"servers": [
2020
{
@@ -484,6 +484,11 @@
484484
"description": "The ID of parent item",
485485
"type": "string",
486486
"example": "123"
487+
},
488+
"user_id": {
489+
"description": "The input for `{user_id}` is optional. Moving to non-root folder is not allowed when `{user_id}` is present. Parent folder id should be zero when `{user_id}` is provided.",
490+
"type": "string",
491+
"example": "12346930"
487492
}
488493
}
489494
},
@@ -625,6 +630,11 @@
625630
"description": "The ID of parent item",
626631
"type": "string",
627632
"example": "123"
633+
},
634+
"user_id": {
635+
"description": "The input for `{user_id}` is optional. Moving to non-root folder is not allowed when `{user_id}` is present. Parent folder id should be zero when `{user_id}` is provided.",
636+
"type": "string",
637+
"example": "12346930"
628638
}
629639
}
630640
},
@@ -1318,6 +1328,11 @@
13181328
"description": "The ID of parent item",
13191329
"type": "string",
13201330
"example": "123"
1331+
},
1332+
"user_id": {
1333+
"description": "The input for `{user_id}` is optional. Moving to non-root folder is not allowed when `{user_id}` is present. Parent folder id should be zero when `{user_id}` is provided.",
1334+
"type": "string",
1335+
"example": "12346930"
13211336
}
13221337
}
13231338
},
@@ -5145,6 +5160,11 @@
51455160
"description": "The ID of parent item",
51465161
"type": "string",
51475162
"example": "123"
5163+
},
5164+
"user_id": {
5165+
"description": "The input for `{user_id}` is optional. Moving to non-root folder is not allowed when `{user_id}` is present. Parent folder id should be zero when `{user_id}` is provided.",
5166+
"type": "string",
5167+
"example": "12346930"
51485168
}
51495169
}
51505170
},
@@ -5302,6 +5322,11 @@
53025322
"description": "The ID of the new parent folder",
53035323
"type": "string",
53045324
"example": "0"
5325+
},
5326+
"user_id": {
5327+
"description": "The input for `{user_id}` is optional. Moving to non-root folder is not allowed when `{user_id}` is present. Parent folder id should be zero when `{user_id}` is provided.",
5328+
"type": "string",
5329+
"example": "12346930"
53055330
}
53065331
}
53075332
},
@@ -13112,6 +13137,11 @@
1311213137
"description": "The ID of parent item",
1311313138
"type": "string",
1311413139
"example": "123"
13140+
},
13141+
"user_id": {
13142+
"description": "The input for `{user_id}` is optional. Moving to non-root folder is not allowed when `{user_id}` is present. Parent folder id should be zero when `{user_id}` is provided.",
13143+
"type": "string",
13144+
"example": "12346930"
1311513145
}
1311613146
}
1311713147
},
@@ -13219,6 +13249,11 @@
1321913249
"description": "The ID of parent item",
1322013250
"type": "string",
1322113251
"example": "123"
13252+
},
13253+
"user_id": {
13254+
"description": "The input for `{user_id}` is optional. Moving to non-root folder is not allowed when `{user_id}` is present. Parent folder id should be zero when `{user_id}` is provided.",
13255+
"type": "string",
13256+
"example": "12346930"
1322213257
}
1322313258
}
1322413259
},

0 commit comments

Comments
 (0)