Installing the SDK
Most of the capabilities of the system are exposed through RESTful services, and as such, any technology that is able to send and receive web requests can interact with Dime.Scheduler. To enhance the development experience, we've added a wrapper around those services with SDKs for .NET, JS, and other programming languages.
The only thing you need to do is install the package in the project that you're working on, a running instance of Dime.Scheduler and credentials to connect to it:
- The URI of your Dime.Scheduler instance
- The e-mail address (which serves as the user name) of a Forms user with administrative access
- The password of that account
.NET SDK
For .NET developers, installing the SDK as simple as installing a NuGet package:
- CLI
- Package Reference
dotnet add package Dime.Scheduler.Sdk --version VERSION_NO
<PackageReference Include="Dime.Scheduler.Sdk" Version="VERSION_NO" />
JavaScript SDK
- NPM
- Yarn
npm i dimescheduler
yarn add dimescheduler