TeamPasswordManagerClient 2.0.1

dotnet add package TeamPasswordManagerClient --version 2.0.1
                    
NuGet\Install-Package TeamPasswordManagerClient -Version 2.0.1
                    
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="TeamPasswordManagerClient" Version="2.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TeamPasswordManagerClient" Version="2.0.1" />
                    
Directory.Packages.props
<PackageReference Include="TeamPasswordManagerClient" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TeamPasswordManagerClient --version 2.0.1
                    
#r "nuget: TeamPasswordManagerClient, 2.0.1"
                    
#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.
#addin nuget:?package=TeamPasswordManagerClient&version=2.0.1
                    
Install TeamPasswordManagerClient as a Cake Addin
#tool nuget:?package=TeamPasswordManagerClient&version=2.0.1
                    
Install TeamPasswordManagerClient as a Cake Tool

TeamPasswordManager

C# Client Library for TeamPasswordManager API v4, v5 or V6: http://teampasswordmanager.com/docs/api/

Basic usage is as follows:


    var config = new TpmConfig
    {
        BaseUrl = "https://tpm-dev.15below.local/index.php/api/V5",
        PublicKey = "5650a2df5b56e81926e06b33ad52c9c541c2aa30e474aa7574654ceb9123056e",
        PrivateKey = "f271d7c2197805dd73ffa1e11c0c25973177ae7b2244984f808dca6c610abe8e"
    };

	var client = new TpmClient(config);
	
    // Get all root projects
    var projects = client.Projects.ListAllProjects();

    // Select the test project
    var testProject = projects.First(where => where.Name == "Test Project");
    
    // Get passwords entries in the test project
    var passwordEntries = client.Passwords.ListAllPasswords(testProject.Id);
    
    // Retrieve the password for the test password entry
    var password = client.Passwords.GetPassword(passwordEntries.First(where => where.Name == "Test Password").Id);
    
    Console.WriteLine(password.Password);
	
Product Compatible and additional computed target framework versions.
.NET Framework net471 is compatible.  net472 was computed.  net48 was computed.  net481 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
2.0.1 116 2/21/2025
2.0.0 105 2/21/2025
1.1.1 519 6/7/2022
1.1.0 982 5/22/2019
1.0.0 1,263 1/12/2018