# Run synchronization job
A synchronization job can be run manually by calling the following endpoint with the synchronization job ID:
POST /odata/syncjobs/run(<syncjobid>)?repository=repo1
Header: Authorization: <bearer_token>
The request starts the synchronization job but does not wait for its completion.
SignalR can be used to wait for the completion of a job.
# Cancel running synchronization job
A currently running synchronization job can be canceled using the cancel endpoint:
POST /odata/syncjobs/cancel(<syncjobid>)?repository=repo1
Header: Authorization: <bearer_token>