Client Installation
System Requirements
The following are the system requirements for the IDaaS Administration 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 Administration API Client
- Java
- CSharp
- Python
- 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-admin-Administration</artifactId>
<version>5.46</version>
</dependency>
implementation 'com.entrustdatacard:intellitrust-admin-Administration:5.46'
By downloading the IDaaS Administration library, you agree to the terms of the license. The open source software included with or as part of the IDaaS Administration library is listed in the open source software notices.
<packageSources>
<add key="idaas-releases" value="https://entrust.us.trustedauth.com/packages/client/csharp/index.json" />
</packageSources>
<ItemGroup>
<PackageReference Include="com.entrustdatacard.intellitrust.admin" Version="5.46.0" />
</ItemGroup>
using com.entrustdatacard.intellitrust.admin.api;
using com.entrustdatacard.intellitrust.admin.Client;
using com.entrustdatacard.intellitrust.admin.model;
By downloading the IDaaS Administration library, you agree to the terms of the license. The open source software included with or as part of the IDaaS Administration library is listed in the open source software notices.
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-administration==5.46
By downloading the IDaaS Administration library, you agree to the terms of the license. The open source software included with or as part of the IDaaS Administration library is listed in the open source software notices.