<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Logging into Vault using API in Vault Customization Forum</title>
    <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12684625#M1324</link>
    <description>&lt;P&gt;Hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11205334"&gt;@jbetz42&lt;/a&gt;.&amp;nbsp;We regret seeing your frustration. I acknowledge that we should enhance the accessibility of documentation and samples and best aggregate federated sources. As a first step, I recently posted a series of articles targeting this on the official &lt;A href="https://blogs.autodesk.com/vault/" target="_blank" rel="noopener"&gt;Autodesk PDM|PLM Blog&lt;/A&gt;, tagged with &lt;A href="https://blogs.autodesk.com/vault/tag/vault-customization" target="_blank" rel="noopener"&gt;Vault Customization&lt;/A&gt;. Now, you might shout at me to start another location to search for information about Vault programming. Yes and no - yes, it is a new link. No - it matches the overall Autodesk documentation scheme, which has product documentation, a knowledge base, community forums, and an Autodesk-hosted blog&lt;SPAN&gt;&amp;nbsp;for all major products.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Back to your request for an updated template to login to Vault using Powershell: this &lt;A href="https://blogs.autodesk.com/vault/2024/03/autodesk-vault-sdk-getting-started-2-console-application/" target="_blank" rel="noopener"&gt;article&lt;/A&gt; should provide you with the required information on what you need to change for each Vault release:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MarkusKoechl_0-1712161983432.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1345333iB2B213FBDA3C2DCB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MarkusKoechl_0-1712161983432.png" alt="MarkusKoechl_0-1712161983432.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I uploaded my 2024 PowerShell template for reference. The comment in line #15 matches the requirements listed before:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MarkusKoechl_2-1712162255981.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1345339iCD25663DEA6D4DA7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MarkusKoechl_2-1712162255981.png" alt="MarkusKoechl_2-1712162255981.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;With that, I dare to say that logging into Vault using Powershell has been resolved. I hope you can agree by leveraging the updated template (don't forget to remove the security block after downloading the zip; otherwise, the script will not execute).&lt;/P&gt;</description>
    <pubDate>Wed, 03 Apr 2024 16:43:09 GMT</pubDate>
    <dc:creator>Markus.Koechl</dc:creator>
    <dc:date>2024-04-03T16:43:09Z</dc:date>
    <item>
      <title>Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12347425#M1314</link>
      <description>&lt;P&gt;I am trying to Log0in into Vault using API within PowerShell. Here is my code:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;[System.Reflection.Assembly]::LoadFrom('C:\Program Files\Autodesk\Autodesk Vault 2024 SDK\bin\x64\Autodesk.Connectivity.WebServices.dll')
$serverID = New-Object Autodesk.Connectivity.WebServices.ServerIdentities
$serverID.DataServer = "&amp;lt;server name&amp;gt;"
$serverID.FileServer = "&amp;lt;server name&amp;gt;"
$VaultName = "Vault"
$UserName = "&amp;lt;UserName&amp;gt;"
$password = "&amp;lt;Password&amp;gt;""
$licenseAgent = [Autodesk.Connectivity.WebServices.LicensingAgent]::Client
$cred = New-Object Autodesk.Connectivity.WebServicesTools.UserPasswordCredentials($serverID, $VaultName, $UserName, $password, $licenseAgent)
$vault = New-Object Autodesk.Connectivity.WebServicesTools.WebServiceManager($cred)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Last line causes an error:&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT size="2"&gt;New-Object : Exception calling ".ctor" with "1" argument(s): "The type initializer for 'Autodesk.Connectivity.WebServicesTools.WebServiceManager' threw an exception."&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;At G:\Software\SSDI\Vault\Temp\Test.ps1:11 char:12&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;+ $vault = New-Object Autodesk.Connectivity.WebServicesTools.WebServi ...&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;+ CategoryInfo : InvalidOperation: (:) [New-Object], MethodInvocationException&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;+ FullyQualifiedErrorId : ConstructorInvokedThrowException,Microsoft.PowerShell.Commands.NewObjectCommand&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;I cannot find any help with this error. Any suggestion why this happens?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Nov 2023 19:35:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12347425#M1314</guid>
      <dc:creator>Eli_Dexter</dc:creator>
      <dc:date>2023-11-01T19:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12361534#M1315</link>
      <description>I did copied AdskLicensingSDK_7.dll to PowerShell folder C:\Windows\System32\WindowsPowerShell\v1.0&lt;BR /&gt;That had no effect...</description>
      <pubDate>Wed, 08 Nov 2023 00:14:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12361534#M1315</guid>
      <dc:creator>Eli_Dexter</dc:creator>
      <dc:date>2023-11-08T00:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12362138#M1316</link>
      <description>&lt;P&gt;v7 licensing (Vault 2024) requires to copy 3 files to the execution folder. I updated the PowerShell template accordingly:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;# NOTE - click licensing v7 requires to copy AdskLicensingSDK_7.dll, AdskIdentitySDK.config, and AdskIdentitySDK.dll to PowerShell execution folder C:\Windows\System32\WindowsPowerShell\v1.0 before Powershell runtime starts
&lt;/LI-CODE&gt;
&lt;P&gt;I reproduced your error removing the additional required files and re-established the connection adding and restarting the PowerShell terminal.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 08:36:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12362138#M1316</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2023-11-08T08:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12363477#M1317</link>
      <description>&lt;P&gt;I have dropped the other 2 files and even (just in case) all other Autodesk.*.DLL files from C:\Program Files\Autodesk\Autodesk Vault 2024 SDK\bin\x64 folder to the PowerShell folder and still having same error...&lt;/P&gt;&lt;P&gt;Here is a screenshop of my PowerSell folder:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Eli_Dexter_0-1699464145797.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290267i00BCAE478BABFC92/image-size/large?v=v2&amp;amp;px=999" role="button" title="Eli_Dexter_0-1699464145797.png" alt="Eli_Dexter_0-1699464145797.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 17:29:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12363477#M1317</guid>
      <dc:creator>Eli_Dexter</dc:creator>
      <dc:date>2023-11-08T17:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12363496#M1318</link>
      <description>Did you ensure that you are logged in to your Autodesk Account?</description>
      <pubDate>Wed, 08 Nov 2023 17:36:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12363496#M1318</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2023-11-08T17:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12363517#M1319</link>
      <description>&lt;P&gt;I am running Vault, so I am looged in into Autodesk Account. Also, I am talking to you in this Forum, so I am logged in into my account...&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 17:45:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12363517#M1319</guid>
      <dc:creator>Eli_Dexter</dc:creator>
      <dc:date>2023-11-08T17:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12363595#M1320</link>
      <description>Re-reading the error you provided (type initializer) you might have to cast the $vault variable like this: 		[Autodesk.Connectivity.WebServicesTools.WebServiceManager]$vault = New-Object Autodesk.Connectivity.WebServicesTools.WebServiceManager($cred)</description>
      <pubDate>Wed, 08 Nov 2023 18:12:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12363595#M1320</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2023-11-08T18:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12363735#M1321</link>
      <description>&lt;P&gt;Sorry, that was not it either. Adding that cast or removing $Vault =&amp;nbsp; completely still produces the same error...&lt;/P&gt;&lt;P&gt;I have a suspition that it has something to do with $Cred variable. This is the value of my $cred variable:&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;FONT size="2"&gt;RequiresClientLicense : True&lt;BR /&gt;UserName : Eli_Admin&lt;BR /&gt;ReadOnly : False&lt;BR /&gt;RequiresSignIn : True&lt;BR /&gt;RequiresSignOut : True&lt;BR /&gt;SupportsSignIn : True&lt;BR /&gt;SupportsSignOut : True&lt;BR /&gt;ServerIdentities : Autodesk.Connectivity.WebServices.ServerIdentities&lt;BR /&gt;Session :&lt;BR /&gt;VaultName : Vault&lt;BR /&gt;WindowsAuthenticationNonDefaultCredentials : &lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 19:02:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12363735#M1321</guid>
      <dc:creator>Eli_Dexter</dc:creator>
      <dc:date>2023-11-08T19:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12677093#M1322</link>
      <description>&lt;P&gt;Did you manage to connect to Vault using Powershell? I have only found these two ressources but according to this thread they are already outdated as the licensing part has changed:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://www.autodesk.com/autodesk-university/class/Autodesk-Vault-2020-Programming-101-2019" target="_blank" rel="noopener"&gt;Autodesk Vault 2020—Programming 101&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://www.autodesk.com/autodesk-university/class/Feel-Power-Between-Vault-and-PowerShell-2019" target="_blank" rel="noopener"&gt;Feel the Power Between Vault and PowerShell&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I wonder why nobody at Autodesk sees the need for a good public API documentation along with examples. All documentation is fragmented, hidden in a non-public CHM file that requires a Vault and SDK installation first. Reading through multiple threads in this forum this issue is persistent over years and not adressed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Inventor guys handle their documentation way better incl. &lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=SampleList" target="_blank" rel="noopener"&gt;samples&lt;/A&gt; and a nice public &lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=UserManualIndex" target="_blank" rel="noopener"&gt;API reference.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 31 Mar 2024 09:23:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12677093#M1322</guid>
      <dc:creator>jbetz42</dc:creator>
      <dc:date>2024-03-31T09:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12678896#M1323</link>
      <description>&lt;P&gt;I has never been resolved. I have just wend around the issue...&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2024 14:48:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12678896#M1323</guid>
      <dc:creator>Eli_Dexter</dc:creator>
      <dc:date>2024-04-01T14:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12684625#M1324</link>
      <description>&lt;P&gt;Hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11205334"&gt;@jbetz42&lt;/a&gt;.&amp;nbsp;We regret seeing your frustration. I acknowledge that we should enhance the accessibility of documentation and samples and best aggregate federated sources. As a first step, I recently posted a series of articles targeting this on the official &lt;A href="https://blogs.autodesk.com/vault/" target="_blank" rel="noopener"&gt;Autodesk PDM|PLM Blog&lt;/A&gt;, tagged with &lt;A href="https://blogs.autodesk.com/vault/tag/vault-customization" target="_blank" rel="noopener"&gt;Vault Customization&lt;/A&gt;. Now, you might shout at me to start another location to search for information about Vault programming. Yes and no - yes, it is a new link. No - it matches the overall Autodesk documentation scheme, which has product documentation, a knowledge base, community forums, and an Autodesk-hosted blog&lt;SPAN&gt;&amp;nbsp;for all major products.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Back to your request for an updated template to login to Vault using Powershell: this &lt;A href="https://blogs.autodesk.com/vault/2024/03/autodesk-vault-sdk-getting-started-2-console-application/" target="_blank" rel="noopener"&gt;article&lt;/A&gt; should provide you with the required information on what you need to change for each Vault release:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MarkusKoechl_0-1712161983432.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1345333iB2B213FBDA3C2DCB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MarkusKoechl_0-1712161983432.png" alt="MarkusKoechl_0-1712161983432.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I uploaded my 2024 PowerShell template for reference. The comment in line #15 matches the requirements listed before:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MarkusKoechl_2-1712162255981.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1345339iCD25663DEA6D4DA7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MarkusKoechl_2-1712162255981.png" alt="MarkusKoechl_2-1712162255981.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;With that, I dare to say that logging into Vault using Powershell has been resolved. I hope you can agree by leveraging the updated template (don't forget to remove the security block after downloading the zip; otherwise, the script will not execute).&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2024 16:43:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12684625#M1324</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2024-04-03T16:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12685078#M1325</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/33301"&gt;@Markus.Koechl&lt;/a&gt; for providing an updated example code and all the useful resources. I will not shout at you. I promise. &lt;span class="lia-unicode-emoji" title=":victory_hand:"&gt;✌️&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;May I ask you one more thing regarding the Vault API? I have recently learned that Vault basically uses a SOAP API. In this forum multiple requests exist to connect to Vault besides the provided C# examples e.g. in JavaScript or Python:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://forums.autodesk.com/t5/vault-customization/logging-into-vault-using-api/m-p/12684625/highlight/true#M11834" target="_blank" rel="noopener"&gt;Logging into Vault using API&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://forums.autodesk.com/t5/vault-customization/vault-web-service-http-api/td-p/8486080" target="_blank" rel="noopener"&gt;Vault Web Service http API?&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://forums.autodesk.com/t5/vault-customization/using-vault-service-api-with-javascript/m-p/9033223" target="_blank" rel="noopener"&gt;Using Vault service API with Javascript&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Is there any Python example code in existence to connect to Vault?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2024 20:32:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12685078#M1325</guid>
      <dc:creator>jbetz42</dc:creator>
      <dc:date>2024-04-03T20:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12685899#M1326</link>
      <description>I don't have Java or Phyton sample code. SOAP is the underlying web service communication, but the Vault API adds much more than that. Think about client extensibility, or especially the Job Service API.  So far, our API has targeted the NET Framework for the full scope. The latest Vault API 2025 (released last week) adds .NET Core as a first step in achieving broader platform independence. So, you see, we are on a journey and expect more to come in the near future.</description>
      <pubDate>Thu, 04 Apr 2024 06:51:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12685899#M1326</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2024-04-04T06:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12813314#M1327</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/33301"&gt;@Markus.Koechl&lt;/a&gt; for the updated Powershell example. I managed to get it to work reading useful data from the AdminService. I have one more question regarding Properties in Vault:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let's say I have a Property called "Manufactuer_name" that contains a list of manufacturers. How can I read the list of all values from this property in PowerShell?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="list-value.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1370821i496B4EE23094D20D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="list-value.png" alt="list-value.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;I basically need a function that requires the property name as input parameter and returns a list of all possible values for the given property. Can you give me a hint on how to achieve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Jun 2024 17:18:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12813314#M1327</guid>
      <dc:creator>jbetz42</dc:creator>
      <dc:date>2024-06-02T17:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12813454#M1328</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11205334"&gt;@jbetz42&lt;/a&gt;: Please mark this thread as resolved and start a new one,&amp;nbsp;as you asked a new question. I will answer the new one. Thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 02 Jun 2024 20:18:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12813454#M1328</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2024-06-02T20:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: Logging into Vault using API</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12813486#M1329</link>
      <description>&lt;P&gt;Thank you for your quick reply &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/33301"&gt;@Markus.Koechl&lt;/a&gt; . I am not the originator of the post therefore I cannot mark your provided solution as solved. &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/526690"&gt;@Eli_Dexter&lt;/a&gt; I can confirm that the provided code works on Vault 2024 so maybe you can mark this post as solved?&lt;BR /&gt;&lt;BR /&gt;As requested I have opened another post: &lt;A href="https://forums.autodesk.com/t5/vault-customization/reading-list-values-of-a-property-in-vault-using-powershell/td-p/12813483" target="_blank"&gt;https://forums.autodesk.com/t5/vault-customization/reading-list-values-of-a-property-in-vault-using-powershell/td-p/12813483&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Jun 2024 20:52:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/logging-into-vault-using-api/m-p/12813486#M1329</guid>
      <dc:creator>jbetz42</dc:creator>
      <dc:date>2024-06-02T20:52:55Z</dc:date>
    </item>
  </channel>
</rss>

