Lists all sources in IdentityNow.​
This end-point lists all the sources in IdentityNow. A token with ORG_ADMIN, SOURCE_ADMIN, SOURCE_SUBADMIN, or ROLE_SUBADMIN authority is required to call this API.
Query Parameters
- limit int32
Possible values:
<= 250
Default value:
250
Max number of results to return. See V3 API Standard Collection Parameters for more information.
Example: 250 - offset int32
Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.
- count boolean
If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored.
Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used.
See V3 API Standard Collection Parameters for more information.
Example: true - filters string
Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: id: eq, in name: co, eq, in, sw type: eq, in owner.id: eq, in features: ca, co created: eq modified: eq managementWorkgroup.id: eq description: eq authoritative: eq healthy: eq status: eq, in connectionType: eq connectorName: eq
Example: name eq "#Employees" - sorters comma-separated
Sort results using the standard syntax described in V3 API Standard Collection Parameters
Sorting is supported for the following fields: type, created, modified, name, owner.name, healthy, status
Example: name - for-subadmin string
Filter the returned list of sources for the identity specified by the parameter, which is the id of an identity with the role SOURCE_SUBADMIN. By convention, the value me indicates the identity id of the current user. Subadmins may only view Sources which they are able to administer; all other Sources will be filtered out when this parameter is set. If the current user is a SOURCE_SUBADMIN but fails to pass a valid value for this parameter, a 403 Forbidden is returned.
Example: name
- 200
- 400
- 401
- 403
- 404
- 429
- 500
List of Source objects
- application/json
- Schema
- Example (from schema)
Schema array
- id string
the id of the Source
- name string
Human-readable name of the source
- description string
Human-readable description of the source
owner object
Reference to an owning Identity Object
type stringPossible values: [
IDENTITY
]The type of object being referenced
id stringID of the identity
name stringHuman-readable display name of the identity
cluster object
Reference to the associated Cluster
type stringPossible values: [
CLUSTER
]The type of object being referenced
id stringID of the cluster
name stringHuman-readable display name of the cluster
accountCorrelationConfig object
Reference to an Account Correlation Config object
type stringPossible values: [
ACCOUNT_CORRELATION_CONFIG
]The type of object being referenced
id stringID of the account correlation config
name stringHuman-readable display name of the account correlation config
accountCorrelationRule object
Reference to a Rule that can do COMPLEX correlation, should only be used when accountCorrelationConfig can't be used.
type stringPossible values: [
RULE
]The type of object being referenced
id stringID of the rule
name stringHuman-readable display name of the rule
managerCorrelationMapping object
Filter Object used during manager correlation to match incoming manager values to an existing manager's Account/Identity
accountAttribute stringName of the attribute to use for manager correlation. The value found on the account attribute will be used to lookup the manager's identity.
identityAttribute stringName of the identity attribute to search when trying to find a manager using the value from the accountAttribute.
managerCorrelationRule object
Reference to the ManagerCorrelationRule, only used when a simple filter isn't sufficient.
type stringPossible values: [
RULE
]The type of object being referenced
id stringID of the rule
name stringHuman-readable display name of the rule
beforeProvisioningRule object
Rule that runs on the CCG and allows for customization of provisioning plans before the connector is called.
type stringPossible values: [
RULE
]The type of object being referenced
id stringID of the rule
name stringHuman-readable display name of the rule
schemas object[]
List of references to Schema objects
type stringPossible values: [
CONNECTOR_SCHEMA
]The type of object being referenced
id stringID of the schema
name stringHuman-readable display name of the schema
passwordPolicies object[]
List of references to the associated PasswordPolicy objects.
type stringPossible values: [
PASSWORD_POLICY
]The type of object being referenced
id stringID of the policy
name stringHuman-readable display name of the policy
- features string[]
Possible values: [
AUTHENTICATE
,COMPOSITE
,DIRECT_PERMISSIONS
,DISCOVER_SCHEMA
,ENABLE
,MANAGER_LOOKUP
,NO_RANDOM_ACCESS
,PROXY
,SEARCH
,TEMPLATE
,UNLOCK
,UNSTRUCTURED_TARGETS
,SHAREPOINT_TARGET
,PROVISIONING
,GROUP_PROVISIONING
,SYNC_PROVISIONING
,PASSWORD
,CURRENT_PASSWORD
,ACCOUNT_ONLY_REQUEST
,ADDITIONAL_ACCOUNT_REQUEST
,NO_AGGREGATION
,GROUPS_HAVE_MEMBERS
,NO_PERMISSIONS_PROVISIONING
,NO_GROUP_PERMISSIONS_PROVISIONING
,NO_UNSTRUCTURED_TARGETS_PROVISIONING
,NO_DIRECT_PERMISSIONS_PROVISIONING
]Optional features that can be supported by a source.
- type string
Specifies the type of system being managed e.g. Active Directory, Workday, etc.. If you are creating a Delimited File source, you must set the
provisionasCsv
query parameter totrue
. - connector string
Connector script name.
- connectorClass string
The fully qualified name of the Java class that implements the connector interface.
- connectorAttributes object
Connector specific configuration; will differ from type to type.
- deleteThreshold int32
Number from 0 to 100 that specifies when to skip the delete phase.
- authoritative boolean
When true indicates the source is referenced by an IdentityProfile.
managementWorkgroup object
Reference to Management Workgroup for this Source
type stringPossible values: [
GOVERNANCE_GROUP
]The type of object being referenced
id stringID of the management workgroup
name stringHuman-readable display name of the management workgroup
- healthy boolean
When true indicates a healthy source
- status string
A status identifier, giving specific information on why a source is healthy or not
- since string
Timestamp showing when a source health check was last performed
- connectorId string
The id of connector
- connectorName string
The name of the connector that was chosen on source creation
- connectionType string
The type of connection (direct or file)
- connectorImplementstionId string
The connector implementstion id
[
{
"id": "2c91808568c529c60168cca6f90c1324",
"name": "My Source",
"description": "This is the corporate directory.",
"owner": {
"type": "IDENTITY",
"id": "2c91808568c529c60168cca6f90c1313",
"name": "MyName"
},
"cluster": {
"type": "CLUSTER",
"id": "2c9180866166b5b0016167c32ef31a66",
"name": "Corporate Cluster"
},
"accountCorrelationConfig": {
"type": "ACCOUNT_CORRELATION_CONFIG",
"id": "2c9180855d191c59015d28583727245a",
"name": "Directory [source-62867] Account Correlation"
},
"accountCorrelationRule": {
"type": "RULE",
"id": "2c918085708c274401708c2a8a760001",
"name": "Example Rule"
},
"managerCorrelationMapping": {
"accountAttribute": "manager",
"identityAttribute": "manager"
},
"managerCorrelationRule": {
"type": "RULE",
"id": "2c918085708c274401708c2a8a760001",
"name": "Example Rule"
},
"beforeProvisioningRule": {
"type": "RULE",
"id": "2c918085708c274401708c2a8a760001",
"name": "Example Rule"
},
"schemas": [
{
"type": "CONNECTOR_SCHEMA",
"id": "2c9180835d191a86015d28455b4b232a",
"name": "account"
},
{
"type": "CONNECTOR_SCHEMA",
"id": "2c9180835d191a86015d28455b4b232b",
"name": "group"
}
],
"passwordPolicies": [
{
"type": "PASSWORD_POLICY",
"id": "2c9180855d191c59015d291ceb053980",
"name": "Corporate Password Policy"
},
{
"type": "PASSWORD_POLICY",
"id": "2c9180855d191c59015d291ceb057777",
"name": "Vendor Password Policy"
}
],
"features": [
"SYNC_PROVISIONING",
"MANAGER_LOOKUP",
"SEARCH",
"PROVISIONING",
"AUTHENTICATE",
"GROUP_PROVISIONING",
"PASSWORD"
],
"type": "OpenLDAP - Direct",
"connector": "active-directory",
"connectorClass": "sailpoint.connector.LDAPConnector",
"connectorAttributes": {
"healthCheckTimeout": 30,
"authSearchAttributes": [
"cn",
"uid",
"mail"
]
},
"deleteThreshold": 10,
"authoritative": false,
"managementWorkgroup": {
"type": "GOVERNANCE_GROUP",
"id": "2c91808568c529c60168cca6f90c2222",
"name": "My Management Workgroup"
},
"healthy": true,
"status": "SOURCE_STATE_HEALTHY",
"since": "2021-09-28T15:48:29.3801666300Z",
"connectorId": "active-directory",
"connectorName": "Active Directory",
"connectionType": "file",
"connectorImplementstionId": "delimited-file"
}
]
Client Error - Returned if the request body is invalid.
- application/json
- Schema
- Example (from schema)
Schema
- detailCode string
Fine-grained error code providing more detail of the error.
- trackingId string
Unique tracking id for the error.
messages object[]
Generic localized reason for error
locale stringThe locale for the message text, a BCP 47 language tag.
localeOrigin stringPossible values: [
DEFAULT
,REQUEST
]An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
text stringActual text of the error message in the indicated locale.
causes object[]
Plain-text descriptive reasons to provide additional detail to the text provided in the messages field
locale stringThe locale for the message text, a BCP 47 language tag.
localeOrigin stringPossible values: [
DEFAULT
,REQUEST
]An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
text stringActual text of the error message in the indicated locale.
{
"detailCode": "400.1 Bad Request Content",
"trackingId": "e7eab60924f64aa284175b9fa3309599",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
],
"causes": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
]
}
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
- application/json
- Schema
- Example (from schema)
Schema
- error
A message describing the error
{
"error": "JWT validation failed: JWT is expired"
}
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
- application/json
- Schema
- Example (from schema)
- 403
Schema
- detailCode string
Fine-grained error code providing more detail of the error.
- trackingId string
Unique tracking id for the error.
messages object[]
Generic localized reason for error
locale stringThe locale for the message text, a BCP 47 language tag.
localeOrigin stringPossible values: [
DEFAULT
,REQUEST
]An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
text stringActual text of the error message in the indicated locale.
causes object[]
Plain-text descriptive reasons to provide additional detail to the text provided in the messages field
locale stringThe locale for the message text, a BCP 47 language tag.
localeOrigin stringPossible values: [
DEFAULT
,REQUEST
]An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
text stringActual text of the error message in the indicated locale.
{
"detailCode": "400.1 Bad Request Content",
"trackingId": "e7eab60924f64aa284175b9fa3309599",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
],
"causes": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
]
}
An example of a 403 response object
{
"detailCode": "403 Forbidden",
"trackingId": "b21b1f7ce4da4d639f2c62a57171b427",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The server understood the request but refuses to authorize it."
}
]
}
Not Found - returned if the request URL refers to a resource or object that does not exist
- application/json
- Schema
- Example (from schema)
- 404
Schema
- detailCode string
Fine-grained error code providing more detail of the error.
- trackingId string
Unique tracking id for the error.
messages object[]
Generic localized reason for error
locale stringThe locale for the message text, a BCP 47 language tag.
localeOrigin stringPossible values: [
DEFAULT
,REQUEST
]An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
text stringActual text of the error message in the indicated locale.
causes object[]
Plain-text descriptive reasons to provide additional detail to the text provided in the messages field
locale stringThe locale for the message text, a BCP 47 language tag.
localeOrigin stringPossible values: [
DEFAULT
,REQUEST
]An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
text stringActual text of the error message in the indicated locale.
{
"detailCode": "400.1 Bad Request Content",
"trackingId": "e7eab60924f64aa284175b9fa3309599",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
],
"causes": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
]
}
An example of a 404 response object
{
"detailCode": "404 Not found",
"trackingId": "b21b1f7ce4da4d639f2c62a57171b427",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The server did not find a current representation for the target resource."
}
]
}
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
- application/json
- Schema
- Example (from schema)
Schema
- message
A message describing the error
{
"message": " Rate Limit Exceeded "
}
Internal Server Error - Returned if there is an unexpected error.
- application/json
- Schema
- Example (from schema)
- 500
Schema
- detailCode string
Fine-grained error code providing more detail of the error.
- trackingId string
Unique tracking id for the error.
messages object[]
Generic localized reason for error
locale stringThe locale for the message text, a BCP 47 language tag.
localeOrigin stringPossible values: [
DEFAULT
,REQUEST
]An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
text stringActual text of the error message in the indicated locale.
causes object[]
Plain-text descriptive reasons to provide additional detail to the text provided in the messages field
locale stringThe locale for the message text, a BCP 47 language tag.
localeOrigin stringPossible values: [
DEFAULT
,REQUEST
]An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
text stringActual text of the error message in the indicated locale.
{
"detailCode": "400.1 Bad Request Content",
"trackingId": "e7eab60924f64aa284175b9fa3309599",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
],
"causes": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
]
}
An example of a 500 response object
{
"detailCode": "500.0 Internal Fault",
"trackingId": "b21b1f7ce4da4d639f2c62a57171b427",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "An internal fault occurred."
}
]
}