Bitwarden.Secrets.Sdk
1.0.0
Prefix Reserved
dotnet add package Bitwarden.Secrets.Sdk --version 1.0.0
NuGet\Install-Package Bitwarden.Secrets.Sdk -Version 1.0.0
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.Secrets.Sdk" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Bitwarden.Secrets.Sdk --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Bitwarden.Secrets.Sdk, 1.0.0"
#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.
// Install Bitwarden.Secrets.Sdk as a Cake Addin #addin nuget:?package=Bitwarden.Secrets.Sdk&version=1.0.0 // Install Bitwarden.Secrets.Sdk as a Cake Tool #tool nuget:?package=Bitwarden.Secrets.Sdk&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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>";
const string stateFile = "<state-file>";
using var bitwardenClient = new BitwardenClient(new BitwardenSettings
{
ApiUrl = apiUrl,
IdentityUrl = identityUrl
});
bitwardenClient.LoginAccessToken(accessToken, stateFile);
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(organizationId, projectId, "TestProjectUpdated");
Add new secret
var key = "key";
var value = "value";
var note = "note";
var secretResponse = bitwardenClient.Secrets.Create(organizationId, key, value, note, new[] { projectId });
Update secret
var secretId = secretResponse.Id;
secretResponse = bitwardenClient.Secrets.Get(secretId);
secretResponse = bitwardenClient.Secrets.Update(organizationId, secretId, "key2", "value2", "note2", new[] { projectId });
Secret GetByIds
var secretsResponse = bitwardenClient.Secrets.GetByIds(new[] { secretResponse.Id });
List secrets
var secretIdentifiersResponse = bitwardenClient.Secrets.List(organizationId);
Sync secrets
var syncResponse = bitwardenClient.Secrets.Sync(organizationId, null);
Delete secret or project
bitwardenClient.Secrets.Delete(new [] { secretId });
bitwardenClient.Projects.Delete(new [] { projectId });
Product | Versions 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.
-
net6.0
- System.Text.Json (>= 8.0.5)
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 |
---|---|---|
1.0.0 | 175 | 1/24/2025 |