Dime.Scheduler
1.0.4
See the version list below for details.
dotnet add package Dime.Scheduler --version 1.0.4
NuGet\Install-Package Dime.Scheduler -Version 1.0.4
<PackageReference Include="Dime.Scheduler" Version="1.0.4" />
<PackageVersion Include="Dime.Scheduler" Version="1.0.4" />
<PackageReference Include="Dime.Scheduler" />
paket add Dime.Scheduler --version 1.0.4
#r "nuget: Dime.Scheduler, 1.0.4"
#:package Dime.Scheduler@1.0.4
#addin nuget:?package=Dime.Scheduler&version=1.0.4
#tool nuget:?package=Dime.Scheduler&version=1.0.4
Dime.Scheduler .NET SDK
This is the official SDK for Dime.Scheduler. The SDK is a gateway to connect any system to Dime.Scheduler through its extensive import pipeline and large collection of web APIs.
Check out the 📚 docs » for more info.
Prerequisites
In order to successfully use the SDK, make sure to comply with the following requirements:
- An active Dime.Scheduler subscription
- A valid Dime.Scheduler API key
Installation
Use the package manager NuGet to install the base library of the SDK:
dotnet add package Dime.Scheduler
⚠️ Versions 2 and up are built for the cloud version of Dime.Scheduler. Use 1.x.x for on-premise versions.
Usage
The example below fetches the resources available in Dime.Scheduler:
DimeSchedulerClient client = new("http://mydimescheduler.com", "my-api-key");
IEnumerable<Resource> resources = await client.Resources.GetAsync(new ResourceRequest());
foreach (Resource resource in resources)
Console.WriteLine(resource.Email);
The DimeSchedulerClient
class is the entry point and it is where all endpoints are exposed:
DimeSchedulerClient client = new("my-api-key");
Just a valid API key is required. With these credentials, you can access any of the endpoints, whether it be fetching data or importing data into Dime.Scheduler.
IEnumerable<Resource> resources = await resourceEndpoint.GetAsync(new ResourceRequest());
This example adds or updates a category:
Category category = new("Category #1", "#6e62b5");
DimeSchedulerClient client = new("my-api-key");
await client.Categories.CreateAsync(category);
Read more
Check out the 📚 docs » for more info.
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 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. 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. |
-
net8.0
- RestSharp (>= 111.3.0)
- System.ComponentModel.Annotations (>= 5.0.0)
- System.Text.Json (>= 8.0.4)
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 |
---|---|---|
2.0.0 | 151 | 4/6/2025 |
2.0.0-beta.5 | 151 | 3/23/2025 |
2.0.0-beta.4 | 156 | 3/22/2025 |
2.0.0-beta.3 | 152 | 3/22/2025 |
2.0.0-beta.2 | 60 | 3/22/2025 |
2.0.0-beta.1 | 57 | 3/22/2025 |
2.0.0-alpha.3 | 142 | 3/20/2025 |
2.0.0-alpha.2 | 141 | 3/20/2025 |
2.0.0-alpha.1 | 153 | 3/11/2025 |
1.1.0 | 210 | 11/14/2024 |
1.0.4 | 4,915 | 7/11/2024 |
1.0.3 | 555 | 6/14/2024 |
1.0.2 | 211 | 6/12/2024 |
1.0.1 | 172 | 4/4/2024 |
1.0.0 | 1,672 | 1/4/2024 |
1.0.0-beta.1 | 398 | 11/29/2023 |