Installation
The API consists of multiple REST endpoints. These can be accessed directly from almost any programming language. See the complete and interactive REST API reference if you want to access the endpoints directly. We also maintain and distribute language specific API's that wrap the REST calls for Java, .NET, iOS, angular.js. Installation instructions vary slightly depending on your programming language.
Java
The Java Checks API lives on maven central. You can include it from any dependency management system that relies on maven.
<dependency>
<groupId>com.acheck21.java</groupId>
<artifactId>checks</artifactId>
<version>1.1.0</version>
</dependency>
dependencies {
compile group: 'com.acheck21.java', name: 'checks', version: '1.0.0'
}
.NET
The .NET Checks API lives in Nuget. To include it in your .NET project, go to Project->Manage NuGet Packages and search for "ACHeck21.Cloud.SimpleChecks". The .NET API requires .NET framework version 4.6.2.
iOS
The iOS API lives on CocoaPods. Add the ACHeck21Checks dependency to your pods file. pod 'ACHeck21Checks', '~> 1.1.0'
Updated almost 6 years ago