Skip to content

Commit 585e62d

Browse files
committed
objectid parameter for MD /properties
1 parent ae6cef8 commit 585e62d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/api/DerivativesApi.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,7 @@ module.exports = (function () {
459459
* @param {String} opts.acceptEncoding If specified with `gzip` or `*`, content will be compressed and returned in a GZIP format.
460460
* @param {Boolean} opts.xAdsForce Force retrieve the object tree even though it failed to be extracted (got 404 with error message) previously. (default is false) retrieve the object tree, and previously failures are not replaced.
461461
* @param {Boolean} opts.forceget To force get the large resource even if it exceeded the expected maximum length (20 MB). Possible values: true, false. The the implicit value is false.
462+
* @param {Boolean} opts.objectid Object id which you want to query properties for.
462463
* data is of type: {module:model/Metadata}
463464
* @param {Object} oauth2client oauth2client for the call
464465
* @param {Object} credentials credentials for the call
@@ -482,7 +483,8 @@ module.exports = (function () {
482483
'guid': guid
483484
};
484485
var queryParams = {
485-
'forceget': opts.forceget || false
486+
'forceget': opts.forceget || false,
487+
'objectid': opts.objectid || null
486488
};
487489
var headerParams = {
488490
'Accept-Encoding': opts.acceptEncoding,

0 commit comments

Comments
 (0)