VerizonApisSDK 1.6.0

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

// Install VerizonApisSDK as a Cake Tool
#tool nuget:?package=VerizonApisSDK&version=1.6.0                

Getting Started with Verizon ThingSpace Quality of Service API endpoints

Introduction

These are the endpoints to subscribe to and end the subscription for Verizon's ThingSpace Quality of Service API. These endpoints use Service Capability Exposure Function or SCEF, and rely on callbacks for asynchronous requests. Note: This example is in YAML and will need to be converted to JSON to use as a spec file.

Install the Package

If you are building with .NET CLI tools then you can also use the following command:

dotnet add package VerizonApisSDK --version 1.6.0

You can also view the package at: https://www.nuget.org/packages/VerizonApisSDK/1.6.0

Test the SDK

The generated SDK also contain one or more Tests, which are contained in the Tests project. In order to invoke these test cases, you will need NUnit 3.0 Test Adapter Extension for Visual Studio. Once the SDK is complied, the test cases should appear in the Test Explorer window. Here, you can click Run All to execute these test cases.

Initialize the API Client

Note: Documentation for the client can be found here.

The following parameters are configurable for the API Client:

Parameter Type Description
VZM2MToken2 string The VZ-M2M session token from Getting Started
Environment Environment The API environment. <br> Default: Environment.Production
Timeout TimeSpan Http client timeout.<br>Default: TimeSpan.FromSeconds(100)
ThingspaceOauthCredentials ThingspaceOauthCredentials The Credentials Setter for OAuth 2 Client Credentials Grant
VzM2mSessionTokenCredentials VzM2mSessionTokenCredentials The Credentials Setter for Custom Header Signature

The API client can be initialized as follows:

VerizonThingSpaceQualityOfServiceAPIEndpointsClient client = new VerizonThingSpaceQualityOfServiceAPIEndpointsClient.Builder()
    .ThingspaceOauthCredentials(
        new ThingspaceOauthModel.Builder(
            "OAuthClientId",
            "OAuthClientSecret"
        )
        .Build())
    .VzM2mSessionTokenCredentials(
        new VzM2mSessionTokenModel.Builder(
            "VZ-M2M-Token"
        )
        .Build())
    .VZM2MToken2("VZ-M2M-Token")
    .Environment(VerizonThingSpaceQualityOfServiceAPIEndpoints.Standard.Environment.Production)
    .Build();

Environments

The SDK can be configured to use a different environment for making API calls. Available environments are:

Fields

Name Description
Production Default
Staging -

Authorization

This API uses the following authentication schemes.

List of APIs

Classes Documentation

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
1.7.0 75 11/15/2024
1.6.0 59 11/15/2024
1.5.1 78 10/25/2024