getMetadata: Get the Metadata for a File.

View source: R/modelDerivative.R

getMetadataR Documentation

Get the Metadata for a File.

Description

Get the metadata of an uploaded file using the Model Derivative API.

Usage

getMetadata(urn = NULL, token = NULL)

Arguments

urn

A string. Source URN (objectId) for the file. Note the URN must be Base64 encoded. To encode the URN, see, for example, the jsonlite::base64_enc function.

token

A string. Token generated with getToken function with data:read and data:write scopes.

Value

An object containing the type, name, and guid of the file.

See Also

https://developer.autodesk.com/en/docs/model-derivative/v2/overview/

Examples

## Not run: 
# Get the metadata for the "aerial.dwg" svf file
resp <- getMetadata(urn <- myEncodedUrn, token = myToken)
myGuid <- resp$content$data$metadata[[1]]$guid

## End(Not run)

paulgovan/AutoDeskR documentation built on July 30, 2023, 11:08 a.m.