getObjectTree {AutoDeskR} | R Documentation |
Get the object tree of an uploaded file using the Model Derivative API.
getObjectTree(guid = NULL, urn = NULL, token = NULL)
guid |
A string. GUID retrieved via the |
urn |
A string. Source URN (objectId) for the file. Note the URN must be
Base64 encoded. To encode the URN, see, for example, the
|
token |
A string. Token generated with |
An object containing the object tree for the selected file. the file.
https://developer.autodesk.com/en/docs/model-derivative/v2/overview/
## Not run:
# Get the object tree for the "aerial.dwg" svf file
resp <- getObjectTree(guid <- myGuid, urn <- myEncodedUrn, token = myToken)
resp
## End(Not run)