Installation
System Requirements
The following are the system requirements for the IIDaaS Issuance API client:
- Java
- CSharp
- Python
- Java 8 or higher
- Maven / Gradle
.NET Standard 2.0, .NET Standard 2.1, .NET Framework 4.8, .NET 8.0
- Python 3.7 or higher
Install the Issuance API Client
- Java
- CSharp
- Python
The IIDaaS Issuance Java client is available from the IDaaS Maven repository. Add the following repository to your build tool configuration:And add the following dependency:
- Maven
- Gradle
<repositories>
<repository>
<id>idaas-releases</id>
<url>https://entrust.us.trustedauth.com/packages/client/java</url>
</repository>
</repositories>
repositories {
maven {
url "https://entrust.us.trustedauth.com/packages/client/java"
}
}
- Maven
- Gradle
<dependency>
<groupId>com.entrustdatacard</groupId>
<artifactId>intellitrust-issuance-Issuance</artifactId>
<version>5.45</version>
</dependency>
implementation 'com.entrustdatacard:intellitrust-issuance-Issuance:5.45'
By downloading the IIDaaS Issuance library, you agree to the terms of the license. The open source softwares has been included with or as part of the IIDaaS Issuance library can be found here.
The IIDaaS Issuance C# client is available as a NuGet package. The package is available at the IDaaS NuGet repository. Add the following repository to your project:And add the following package reference to your project file:Using the following namespaces:
<packageSources>
<add key="idaas-releases" value="https://entrust.us.trustedauth.com/packages/client/csharp/index.json" />
</packageSources>
<ItemGroup>
<PackageReference Include="com.entrustdatacard.intellitrust.issuance" Version="5.45.0" />
</ItemGroup>
using com.entrustdatacard.intellitrust.issuance.api;
using com.entrustdatacard.intellitrust.issuance.Client;
using com.entrustdatacard.intellitrust.issuance.model;
By downloading the IIDaaS Issuance library, you agree to the terms of the license. The open source softwares has been included with or as part of the IIDaaS Issuance library can be found here.
The IIDaaS Issuance Python client is available as a Python package. The package is available at the IDaaS Python repository. Add the following repository to your project:For example, using pip:
https://entrust.us.trustedauth.com/packages/client/python/simple/
python3 -m pip install --upgrade --extra-index-url https://entrust.us.trustedauth.com/packages/client/python/simple/ intellitrust-python-issuance==5.45
By downloading the IIDaaS Issuance library, you agree to the terms of the license. The open source softwares has been included with or as part of the IIDaaS Issuance library can be found here.