Bitwarden.Sdk 0.0.1-alpha

Prefix Reserved
This is a prerelease version of Bitwarden.Sdk.
dotnet add package Bitwarden.Sdk --version 0.0.1-alpha
                    
NuGet\Install-Package Bitwarden.Sdk -Version 0.0.1-alpha
                    
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="Bitwarden.Sdk" Version="0.0.1-alpha" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Bitwarden.Sdk" Version="0.0.1-alpha" />
                    
Directory.Packages.props
<PackageReference Include="Bitwarden.Sdk" />
                    
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 Bitwarden.Sdk --version 0.0.1-alpha
                    
#r "nuget: Bitwarden.Sdk, 0.0.1-alpha"
                    
#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=Bitwarden.Sdk&version=0.0.1-alpha&prerelease
                    
Install Bitwarden.Sdk as a Cake Addin
#tool nuget:?package=Bitwarden.Sdk&version=0.0.1-alpha&prerelease
                    
Install Bitwarden.Sdk as a Cake Tool

Bitwarden Secrets Manager SDK

.NET bindings for interacting with the Bitwarden Secrets Manager. This is a beta release and might be missing some functionality.

Create access token

Review the help documentation on Access Tokens

Usage code snippets

Create new Bitwarden client

const string accessToken = "<access-token>";
using var bitwardenClient = new BitwardenClient();
bitwardenClient.AccessTokenLogin(accessToken);

Create new project

var organizationId = Guid.Parse("<organization-id>");
var projectResponse = bitwardenClient.Projects().Create(organizationId, "TestProject");

List all projects

var response = bitwardenClient.Projects.List(organizationId);

Update project

var projectId = projectResponse.Id;
projectResponse = bitwardenClient.Projects.Get(projectId);
projectResponse = bitwardenClient.Projects.Update(projectId, organizationId, "TestProjectUpdated");

Add new secret

var key = "key";
var value = "value";
var note = "note";
var secretResponse = bitwardenClient.Secrets.Create(key, value, note, organizationId, new[] { projectId });
var secretId = secretResponse.Id;

Update secret

secretResponse = bitwardenClient.Secrets
    .Update(secretId, "key2", "value2", "note2", organizationId, new[] { projectId });

List secrets

var secretIdentifiersResponse = bitwardenClient.Secrets.List(organizationId);

Delete secret or project

bitwardenClient.Secrets.Delete(new [] { secretId });
bitwardenClient.Projects.Delete(new [] { projectId });
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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.1-alpha 3,727 10/10/2023