1.3.3 • Published 1 month ago

sailpoint-api-client v1.3.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

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.3.3

1 month ago

1.3.2

2 months ago

1.3.1

3 months ago

1.3.0

6 months ago

1.2.3

7 months ago

1.2.2

8 months ago

1.1.0

11 months ago

1.2.1

8 months ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago