1.4.15 • Published 4 months ago
sailpoint-api-client v1.4.15
SailPoint API Client
Description
A typescript sdk for accessing the SailPoint IdentityNow REST API's.
Installation
npm install sailpoint-api-client
Create a configuration file or save your configuration as environment variables
You can create a local configuration file using the CLI tool or you can store your configuration in environment variables
- SAIL_BASE_URL
- SAIL_CLIENT_ID
- SAIL_CLIENT_SECRET
Examples
Simply import the API you want to work with, create a new configuration and get started.
import { Configuration, TransformsApi, TransformsApiCreateTransformRequest} from "sailpoint-api-client"
const createTransform = async () => {
let apiConfig = new Configuration()
let api = new TransformsApi(apiConfig)
let transform: TransformsApiCreateTransformRequest =
{
transform:
{
name: "Test Transform",
type: "dateFormat",
attributes: {
inputFormat: "MMM dd yyyy, HH:mm:ss.SSS",
outputFormat: "yyyy/dd/MM"
}
}
}
const val = await api.createTransform(transform)
console.log(val)
}
createTransform()
See more uses of the SDK here
1.4.11
7 months ago
1.4.10
8 months ago
1.4.13
6 months ago
1.4.12
7 months ago
1.4.15
4 months ago
1.4.14
4 months ago
1.3.6
1 year ago
1.3.5
1 year ago
1.3.4
1 year ago
1.4.8
11 months ago
1.3.3
1 year ago
1.3.2
1 year ago
1.3.1
1 year ago
1.3.0
2 years ago
1.2.3
2 years ago
1.2.2
2 years ago
1.1.0
2 years ago
1.2.1
2 years ago
1.0.4
2 years ago
1.0.3
2 years ago
1.0.2
2 years ago
1.0.1
2 years ago
1.0.0
2 years ago