Files
developer.sailpoint.com/docs/connectivity/saas-connectivity/connector-customizers/getting-started.md
Colin McKibben 0aae0e156a Update getting-started.md
Added video to connector customizer guide
2024-03-13 15:42:11 -04:00

1.6 KiB

id, title, pagination_label, sidebar_label, sidebar_position, sidebar_class_name, keywords, description, slug, tags
id title pagination_label sidebar_label sidebar_position sidebar_class_name keywords description slug tags
connectivity-customizers-getting-started Getting Started Getting Started Getting Started 4 saasConnectivity
connectivity
connectors
customizers
Get started with connectivity customizers. /connectivity/saas-connectivity/customizers/getting-started
Connectivity

Get Started

Video Tutorial

Required software

You need to have the same software installed to create a customizer that you need to create a SaaS Connector. You can find the lists of Prerequisites here.

Create your first project

To create an empty connector customizer project, run this command:

sail conn customizers init my-customizer-project

The CLI init command creates a new folder with your project name in the location where you run the command.

Change the directory to the project folder and run ```npm install`` to install the dependencies.

Source files

The earlier command creates this initial project source directory:

my-customizer-project
├── .gitignore
├── package.json
├── src/
|   ├── index.ts
|   └── index-spec.ts
├── tsconfig.json

This directory contains one source code file. Though you can expand the customizer to include more than one file, the "index.ts" file contains all the logic for the customizer.

  • index.ts: Use this file to register all the available customizer commands the connector supports.