SpeakeasySDK 5.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package SpeakeasySDK --version 5.1.0                
NuGet\Install-Package SpeakeasySDK -Version 5.1.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="SpeakeasySDK" Version="5.1.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SpeakeasySDK --version 5.1.0                
#r "nuget: SpeakeasySDK, 5.1.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 SpeakeasySDK as a Cake Addin
#addin nuget:?package=SpeakeasySDK&version=5.1.0

// Install SpeakeasySDK as a Cake Tool
#tool nuget:?package=SpeakeasySDK&version=5.1.0                

Speakeasy

SDK Installation

Nuget

dotnet add package SpeakeasySDK

SDK Example Usage

Example

using SpeakeasySDK;
using SpeakeasySDK.Models.Shared;
using SpeakeasySDK.Models.Operations;
using System.Collections.Generic;

var sdk = new Speakeasy(
    security: new Security() {
        APIKey = "<YOUR_API_KEY_HERE>",
    },
    workspaceID: "<value>");

GetApisRequest req = new GetApisRequest() {};

var res = await sdk.Apis.GetApisAsync(req);

// handle response

Available Resources and Operations

Apis

ApiEndpoints

Metadata

Schemas

Auth

Requests

Organizations

Embeds

Events

Server Selection

Server Selection

Select Server by Name

You can override the default server globally by passing a server name to the server: string optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the names associated with the available servers:

Name Server Variables
prod https://api.prod.speakeasyapi.dev None

Override Server URL Per-Client

The default server can also be overridden globally by passing a URL to the serverUrl: str optional parameter when initializing the SDK client instance. For example:

Authentication

Per-Client Security Schemes

This SDK supports the following security schemes globally:

Name Type Scheme
APIKey apiKey API key
Bearer http HTTP Bearer

You can set the security parameters through the security optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:

using SpeakeasySDK;
using SpeakeasySDK.Models.Shared;
using SpeakeasySDK.Models.Operations;

var sdk = new Speakeasy(
    security: new Security() {
        APIKey = "<YOUR_API_KEY_HERE>",
    },
    workspaceID: "<value>");

DeleteApiRequest req = new DeleteApiRequest() {
    ApiID = "<value>",
    VersionID = "<value>",
};

var res = await sdk.Apis.DeleteApiAsync(req);

// handle response

Global Parameters

Global Parameters

A parameter is configured globally. This parameter may be set on the SDK client instance itself during initialization. When configured as an option during SDK initialization, This global value will be used as the default on the operations that use it. When such operations are called, there is a place in each to override the global value, if needed.

For example, you can set workspaceID to "<value>" at SDK initialization and then you do not have to pass the same value on calls to operations like GetWorkspaceEvents. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.

Available Globals

The following global parameter is available.

Name Type Required Description
workspaceID string The WorkspaceID parameter.

Example

using SpeakeasySDK;
using SpeakeasySDK.Models.Shared;
using SpeakeasySDK.Models.Operations;

var sdk = new Speakeasy(
    security: new Security() {
        APIKey = "<YOUR_API_KEY_HERE>",
    },
    workspaceID: "<value>");

GetWorkspaceEventsRequest req = new GetWorkspaceEventsRequest() {};

var res = await sdk.Events.GetWorkspaceEventsAsync(req);

// handle response

Maturity

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.

Contributions

While we value open-source contributions to this SDK, this library is generated programmatically. Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!

SDK Created by Speakeasy

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  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. 
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
5.10.0 73 9/20/2024
5.9.28 59 9/19/2024
5.9.27 61 7/31/2024
5.9.25 80 7/18/2024
5.9.23 86 7/17/2024
5.9.22 81 7/17/2024
5.9.21 86 7/17/2024
5.9.18 84 7/16/2024
5.9.17 89 7/2/2024
5.9.16 106 6/20/2024
5.9.15 102 6/20/2024
5.9.14 102 6/20/2024
5.9.10 100 6/18/2024
5.9.9 96 6/11/2024
5.9.8 93 6/11/2024
5.3.0 114 4/2/2024
5.2.0 119 3/27/2024
5.1.2 115 3/22/2024
5.1.1 121 3/20/2024
5.1.0 127 3/12/2024
5.0.3 108 2/17/2024
5.0.2 107 2/15/2024
5.0.1 121 2/9/2024
5.0.0 108 2/8/2024
4.0.0 123 2/6/2024
3.0.0 108 2/1/2024
2.3.1 107 1/19/2024
2.3.0 150 12/12/2023
2.2.2 149 12/1/2023
2.2.1 151 11/18/2023
2.2.0 125 11/16/2023
2.1.0 131 11/9/2023
2.0.0 114 11/7/2023
1.17.0 155 10/21/2023
1.16.4 152 10/18/2023
1.16.3 148 10/17/2023
1.16.2 159 10/7/2023
1.16.1 155 10/2/2023
1.16.0 145 10/1/2023
1.15.0 131 9/29/2023
1.14.1 149 9/27/2023
1.14.0 146 9/26/2023
1.13.7 143 9/20/2023
1.13.6 140 9/16/2023
1.13.5 134 9/8/2023
1.13.4 155 9/7/2023
1.13.3 165 9/5/2023
1.13.2 154 9/3/2023
1.13.1 169 9/2/2023
1.13.0 159 9/1/2023
1.12.0 166 8/31/2023
1.11.0 164 8/26/2023
1.10.1 160 8/25/2023
1.10.0 170 8/15/2023
1.9.0 191 8/8/2023
1.8.0 188 8/4/2023
1.7.0 185 8/3/2023
1.6.1 186 8/1/2023
1.6.0 159 7/28/2023
1.5.1 188 7/27/2023
1.5.0 183 7/26/2023
1.4.0 204 7/22/2023
1.3.1 184 7/19/2023
1.3.0 197 7/18/2023
1.2.0 187 7/14/2023
1.1.0 194 7/13/2023
1.0.6 189 7/12/2023
1.0.5 179 7/11/2023
1.0.4 189 7/11/2023
1.0.3 196 7/11/2023