We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa84df1 commit 4c7b190Copy full SHA for 4c7b190
1 file changed
doc/sphinx-guides/source/api/native-api.rst
@@ -1316,9 +1316,11 @@ The following convenience API shows the dynamic values of the *remaining* storag
1316
curl -H "X-Dataverse-key: $API_TOKEN" "http://localhost:8080/api/datasets/$dataset-id/uploadlimits"
1317
{
1318
"status": "OK",
1319
- "uploadLimits": {
1320
- "numberOfFilesRemaining": 20,
1321
- "storageQuotaRemaining": 1048576
+ "data": {
+ "uploadLimits": {
+ "numberOfFilesRemaining": 20,
1322
+ "storageQuotaRemaining": 1048576
1323
+ }
1324
}
1325
1326
@@ -1328,7 +1330,9 @@ Or, when neither limit is present:
1328
1330
1329
1331
1332
- "uploadLimits": {}
1333
1334
+ "uploadLimits": {}
1335
1336
1337
1338
This API requires the Edit permission on the dataset.
0 commit comments