Autodesk Vault ProfessionalVault API

GetDownloadTicketsByMasterIds Method

Autodesk.Connectivity.WebServicesDocumentService

Gets a ticket that you can use to download binary data from the filestore service. Use this function when downloading the latest file versions.

Syntax

public ByteArray[] GetDownloadTicketsByMasterIds(
   System.long[] masterIds
)
Public Function GetDownloadTicketsByMasterIds( _
   ByVal masterIds() As System.Long _
) As ByteArray()

Parameters

NameDescription
masterIdsA set of files to download.

Return Value

An array of download tickets, one for each master ID input. The ticket itself is just a byte array. Use the ticket in the Filestore Service to download the actual binary data for the file. The resulting download will be the latest version corresponding to the file master ID.

See Also