OLT.Infisical.API.Wrapper
9.1.0-beta-0015
Prefix Reserved
This is a prerelease version of OLT.Infisical.API.Wrapper.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package OLT.Infisical.API.Wrapper --version 9.1.0-beta-0015
NuGet\Install-Package OLT.Infisical.API.Wrapper -Version 9.1.0-beta-0015
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="OLT.Infisical.API.Wrapper" Version="9.1.0-beta-0015" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OLT.Infisical.API.Wrapper" Version="9.1.0-beta-0015" />
<PackageReference Include="OLT.Infisical.API.Wrapper" />
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 OLT.Infisical.API.Wrapper --version 9.1.0-beta-0015
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: OLT.Infisical.API.Wrapper, 9.1.0-beta-0015"
#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.
#:package OLT.Infisical.API.Wrapper@9.1.0-beta-0015
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=OLT.Infisical.API.Wrapper&version=9.1.0-beta-0015&prerelease
#tool nuget:?package=OLT.Infisical.API.Wrapper&version=9.1.0-beta-0015&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
OLT.Infisical.API.Wrapper - Wrapper for Infisical API
A .NET API wrapper for Infisical's secrets management endpoints. This library provides strongly-typed interfaces for interacting with Infisical's REST API, including secret creation, update, deletion, retrieval, bulk operations, and tag management.
Install the package:
dotnet add package OLT.Infisical.API.Wrapper
Overview
- Fully async API using
Task - Designed for .NET 8 and .NET 9
- Uses Refit for declarative REST API calls
Add the Infisical HTTP Client to your service collection:
using OLT.Infisical.API.Wrapper;
services.AddInfisicalHttpClient(opts =>
{
// opts.SiteUrl = "https://infisical.mydomain.com"; <-- Custom URL if needed (default is https://us.infisical.com)
opts.ClientId = "00000000-0000-0000-0000-000000000000";
opts.ClientSecret = "client secret here";
});
Secrets
- Create, update, delete, and retrieve secrets
- Bulk operations for secrets (create, update, delete)
- Attach and detach tags to secrets
- Query secrets with advanced filtering
Usage
CreateSecret- Create a new secretUpdateSecret- Update an existing secretDeleteSecret- Delete a secretRetrieveSecret- Get a secret by nameListSecrets- List all secretsBulkCreate- Create multiple secretsBulkUpdate- Update multiple secretsBulkDelete- Delete multiple secretsAttachTags- Attach tags to a secretDetachTags- Detach tags from a secret
API Endpoints
| Method | Verb | Endpoint | Description |
|---|---|---|---|
| CreateSecret | POST | /api/v3/secrets/raw/{secretName} | Create a secret |
| UpdateSecret | PATCH | /api/v3/secrets/raw/{secretName} | Update a secret |
| DeleteSecret | DELETE | /api/v3/secrets/raw/{secretName} | Delete a secret |
| RetrieveSecret | GET | /api/v3/secrets/raw/{secretName} | Retrieve a secret |
| ListSecrets | GET | /api/v3/secrets/raw | List secrets |
| BulkUpdate | PATCH | /api/v3/secrets/batch/raw | Bulk update secrets |
| BulkCreate | POST | /api/v3/secrets/batch/raw | Bulk create secrets |
| BulkDelete | DELETE | /api/v3/secrets/batch/raw | Bulk delete secrets |
| AttachTags | POST | /api/v3/secrets/tags/{secretName} | Attach tags to a secret |
| DetachTags | DELETE | /api/v3/secrets/tags/{secretName} | Detach tags from a secret |
Folders
- Create, update, delete, and retrieve folders
- Query folders with advanced filtering
Usage
CreateFolder- Create a new folderUpdateFolder- Update a folderDeleteFolder- Delete a folderGetFolder- Get folder by idListFolders- List all folders
API Endpoints
| Method | Verb | Endpoint | Description |
|---|---|---|---|
| CreateFolder | POST | /api/v3/folders | Create a folder |
| UpdateFolder | PATCH | /api/v3/folders/{folderName} | Update a folder |
| DeleteFolder | DELETE | /api/v3/folders/{folderName} | Delete a folder |
| GetFolderByID | GET | /api/v3/folders/{id} | Get folder by ID |
| ListFolders | GET | /api/v3/folders | List folders |
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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 is compatible. 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. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Microsoft.Extensions.Http.Polly (>= 8.0.19)
- Microsoft.IdentityModel.Tokens (>= 8.14.0)
- Refit.HttpClientFactory (>= 8.0.0)
- System.Text.Json (>= 8.0.6)
-
net9.0
- Microsoft.Extensions.Http.Polly (>= 9.0.8)
- Microsoft.IdentityModel.Tokens (>= 8.14.0)
- Refit.HttpClientFactory (>= 8.0.0)
- System.Text.Json (>= 9.0.8)
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 |
|---|---|---|
| 10.0.2 | 258 | 3/3/2026 |
| 10.0.1 | 148 | 2/16/2026 |
| 10.0.0 | 120 | 2/11/2026 |
| 9.1.0 | 148 | 2/11/2026 |
| 9.1.0-beta-0025 | 289 | 10/2/2025 |
| 9.1.0-beta-0020 | 259 | 9/4/2025 |
| 9.1.0-beta-0018 | 204 | 9/4/2025 |
| 9.1.0-beta-0015 | 247 | 8/26/2025 |