Skip to main content

TenantApi

API for reading tenant details. All URIs are relative to https://sailpoint.api.identitynow.com

MethodHTTP requestDescription
get-tenant-v1GET /tenant/v1Get tenant information.

get-tenant-v1

Get tenant information. This rest endpoint can be used to retrieve tenant details.

API Spec

Parameters

This endpoint does not need any parameter.

Return type

Tenant

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

import { TenantApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';

const configuration = new Configuration();
const apiInstance = new TenantApi(configuration);
const result = await apiInstance.getTenantV1({ });
console.log(result);

[Back to top]