Commands: GetActive

The GET method returns the information about the active outgoing synchronizations.

Syntax

curl \
	http://{serverUrl}/fs/{fileSystemName}/synchronization/active?start={start}&pageSize={pageSize}  \
	-X GET

Request

Query parameter Required Description
start No The number of results that should be skipped
pageSize No The maximum number of results that will be returned

Response

Status code Description
200 OK
Return Value Description
JSON The ItemsPage object that contains the number of total results and the list of the SynchronizationDetails objects, which contains info about synchronizations being in progress.

Example

curl \
	-X GET http://localhost:8081/fs/SlaveNorthwindFS/synchronization/active  \
< HTTP/1.1 200 OK

{
    "TotalCount":0,
    "Items":[]
}