How to pull the custom connectors from tenant

Hi,

I have certain number of custom connectors in tenant. How do pull the list/names of only custom connector sources.

Hi @nandiniks1

You have setup the CLI and then you can run below command to get the list of connectors:

sail conn list

Download the CLI from Releases · sailpoint-oss/sailpoint-cli

You can see the CLI commands from Connectors | SailPoint Developer Community

Regards,

Shekhar Das

Hi,
Can you paste the response of a specific custom connector source from postman, to check the attributes like connector name, and type.

Hi Bhanu, if we find the below details in json, should we conclude if that’s is the custom connector.

“className”: “sailpoint.connector.OpenConnectorAdapter”

@nandiniks1 Use GET /v3/sources with a filter on connectorImplementationId. Custom connectors typically have an implementationId that differs from out-of-the-box connectors. GET https://{tenant}.api.identitynow.com/v3/sources?filters=connectorImplementationId ne “”&sorters=name

connectorImplementationId is same for all custom connectors? or different?

Got the o/p. Thank you