Skip to main content

Create custom connector

POST 

/connectors

Create custom connector. A token with ORG_ADMIN authority is required to call this API.

Request

Body

required
    name stringrequired

    The connector name. Need to be unique per tenant. The name will able be used to derive a url friendly unique scriptname that will be in response. Script name can then be used for all update endpoints

    type string

    The connector type. If not specified will be defaulted to 'custom '+name

    className stringrequired

    The connector class name. If you are implementing openconnector standard (what is recommended), then this need to be set to sailpoint.connector.OpenConnectorAdapter

    directConnect boolean

    Default value: true

    true if the source is a direct connect source

    status string

    Possible values: [DEVELOPMENT, DEMO, RELEASED]

    The connector status

Responses

A Connector Dto object

Schema
    name string

    The connector name

    type string

    The connector type

    scriptName string

    The connector script name

    className string

    The connector class name.

    features string[]nullable

    The list of features supported by the connector

    directConnect boolean

    Default value: false

    true if the source is a direct connect source

    connectorMetadata object

    A map containing metadata pertinent to the connector

    property name* any

    A map containing metadata pertinent to the connector

    status string

    Possible values: [DEPRECATED, DEVELOPMENT, DEMO, RELEASED]

    The connector status

Loading...