# Get Endpoint - GetSynchronizedSystems
Returns a synchronized item of a synchronization job.
# HTTP Request
One of the following requests should be made:
GET /odata/syncitems({key})
GET /odata/syncitems/{key}
The endpoint supports the following OData query parameters: $select, $expand
# Path parameters
| Name | Description |
|---|---|
| key | required |
# Request headers
| Name | Description |
|---|---|
| Authorization | required. Bearer {token}. See authorization |
# Responses
| Code | Description | Type |
|---|---|---|
200 | Returned if the information about the system could be retrieved successfully | array SyncItemEntity |
500 | Returned if an error occurred while fetching information about a system. |
# Example
# Request
The following is an example of how to call the endpoint:
GET /odata/syncitems(1)?repository=repo1
# Response
The following example shows the response:
Information
The response object is truncated for clarity. Default properties will be returned from the call.
{
"@odata.context": "https://elosyncurl/odata/$metadata#SyncItems",
"value": [
{
"id": "...",
"systemId": "...",
"systemItemId": "..."
// ... more
}
]
}