Autodesk Vault ProfessionalVault API

UploadPackagePart Method

Autodesk.Connectivity.WebServicesPackageService

Uploads a part of the import file contents to the server

Required Permissions

ERPImport

Syntax

public FileNameAndURL UploadPackagePart(
   System.string existingPackage,
   System.string extension,
   System.byte[] filePart
)
Public Function UploadPackagePart( _
   ByVal existingPackage As System.String, _
   ByVal extension As System.String, _
   ByVal filePart() As System.Byte _
) As FileNameAndURL

Parameters

NameDescription
existingPackageexisting package name. Use an empty string if this is for a new package
extensionthe file extension
filePartthe binary file part contents

Return Value

Information about the uploaded package to be used with other import APIs

Remarks

This is the first call to the item import process. The returned FileNameAndURL will be used in other package server APIs to complete the import process.

See Also