Adsk.Platform.DataManagement 0.0.13

dotnet add package Adsk.Platform.DataManagement --version 0.0.13                
NuGet\Install-Package Adsk.Platform.DataManagement -Version 0.0.13                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Adsk.Platform.DataManagement" Version="0.0.13" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Adsk.Platform.DataManagement --version 0.0.13                
#r "nuget: Adsk.Platform.DataManagement, 0.0.13"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Adsk.Platform.DataManagement as a Cake Addin
#addin nuget:?package=Adsk.Platform.DataManagement&version=0.0.13

// Install Adsk.Platform.DataManagement as a Cake Tool
#tool nuget:?package=Adsk.Platform.DataManagement&version=0.0.13                

Adsk.Platform.DataManagement

The Adsk.Platform.DataManagement toolkit provides a set of APIs to interact with the Autodesk Data Management Service.

Usage

See here for details.

Urn vs Id

The SDK uses urn and id interchangeably. Basically, the id is an unique identifier for an folder, item, version this id is a string starting with prefix urn.

Filtering

Few endpoints support filters as query parameters (see Filtering in the APS documentation).

Some of them are accessible with Intellisense, for example:

public async Task<List<FolderContent>> getFolderContentByPageAsync(string projectId, string folderId)
{
    return await _dataMgtClient.Projects[projectId].Folders[folderId].Contents
                        .GetAsync(r =>
                        {
                            r.QueryParameters.Filtertype = ["item"];
                            r.QueryParameters.FilterextensionType = ["items:autodesk.bim360:File"];
                        });

}

But for more complex filters, you need to override the default URL:


public async Task<Models.Search?> SearchAdvancedAsync(string projectId, string folderId)
    {
        var filters = new List<(string, string)>
		{
			( "filter[extension.type]", "items:autodesk.bim360:File" ),
			( "filter[type]", "item" ),
            ( "filter[attributes.fileName]-contains","Floor")
		};

        var requestInfo = _dataMgtClient.Api.Projects[projectId].Folders[folderId].Search.ToGetRequestInformation();

        var searchWithFiltersURI = _dataMgtClient.Helper.CreateRequestWithFilters(requestInfo, filters);

        var searchResult = await _dataMgtClient.Api.Projects[projectId].Folders[folderId].Search.WithUrl(searchWithFiltersURI).GetAsync();

        return searchResult;

    }

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.13 107 9/18/2024
0.0.12 145 7/30/2024
0.0.11 93 7/16/2024
0.0.10 85 7/16/2024
0.0.9 91 5/31/2024
0.0.8 90 5/22/2024
0.0.7 66 5/14/2024
0.0.6 116 5/4/2024
0.0.5 95 5/3/2024
0.0.4 111 4/30/2024
0.0.3 114 4/30/2024