@maccuaa/intellitrust-admin-sdk
TypeScript icon, indicating that this package has built-in type declarations

5.33.3 • Public • Published

@maccuaa/intellitrust-admin-sdk@5.33.3

This is a JavaScript client for the Entrust Identity as a Service Administration API. This module can be used in the following environments:

  • Node.js
  • Webpack
  • Browserify

It can be used in both TypeScript and JavaScript projects.

Installation

npm install @maccuaa/intellitrust-admin-sdk --save

Usage

NOTE: Make sure to replace the configuration values in the examples with the values from your Identity as a Service account!

import * as AdminSDK from "@maccuaa/intellitrust-admin-sdk";

const basePath = "https://entrust.us.trustedauth.com";

// Admin API application credentials
const credentials: AdminSDK.AdminApiAuthentication = {
  applicationId: "792130ae-fe2a-4a83-beb6-afc4306ac9fe",
  sharedSecret: "b_Zv2IRQZe90ENkK59pzFQYrq1aZUJExvv4s7MJM53Q"
};

// Create a new instance of the API.
const sdk = new AdminSDK.API({
  basePath
});

// Authenticate to the Admin API application.
const authResponse = await sdk.authenticateAdminApiUsingPOST(credentials);

// Get the authToken from the response
const { authToken } = authResponse.data;

// Set the authToken so it can be used in all API calls
sdk.setApiKey(authToken);

// Exampe: List all Authentication API applications
const listResponse = await sdk.listAuthApiApplicationsUsingGET();

// Print the response
console.log(listResponse.data);

Help

For more information on how to use the APIs please refer to the Identity as a Service Administration API documentation.

Dependencies (1)

Dev Dependencies (2)

Package Sidebar

Install

npm i @maccuaa/intellitrust-admin-sdk

Weekly Downloads

168

Version

5.33.3

License

ISC

Unpacked Size

2.01 MB

Total Files

23

Last publish

Collaborators

  • maccuaa