Retrieve a Connected System¶
Returns the full details of a connected system, including its connector reference, discovered object types, and summary counts.
Path Parameters¶
| Parameter | Type | Description |
|---|---|---|
connectedSystemId |
integer | ID of the connected system |
Examples¶
Response¶
Returns 200 OK with the full Connected System object.
{
"id": 1,
"name": "Corporate LDAP",
"description": "Primary directory for employee accounts",
"created": "2026-01-15T09:30:00Z",
"lastUpdated": "2026-03-20T14:12:00Z",
"status": "Active",
"settingValuesValid": true,
"connector": {
"id": 3,
"name": "JIM LDAP Connector"
},
"objectTypes": [
{
"id": 10,
"name": "user",
"created": "2026-01-15T09:31:00Z",
"selected": true,
"removeContributedAttributesOnObsoletion": false,
"attributeCount": 47
},
{
"id": 11,
"name": "group",
"created": "2026-01-15T09:31:00Z",
"selected": true,
"removeContributedAttributesOnObsoletion": false,
"attributeCount": 12
}
],
"objectCount": 12450,
"pendingExportCount": 0,
"maxExportParallelism": 4
}
Errors¶
| Status | Code | Description |
|---|---|---|
401 |
UNAUTHORISED |
Authentication required |
403 |
FORBIDDEN |
Insufficient permissions (Administrator role required) |
404 |
NOT_FOUND |
Connected system does not exist |