Skip to main content

List recent sync jobs

Returns the 20 most recent sync events for the given config, newest first.

Request

Method: GET
Path: /api/sync/events

Authentication: Not required

Parameters

NameTypeInRequiredDescription
configIdstringqueryYes

Responses

200 - Recent jobs

400 - Missing configId

Examples

cURL

curl -X GET \
-H "Content-Type: application/json" \
http://localhost:3000/api/sync/events

JavaScript

const response = await fetch('http://localhost:3000/api/sync/events', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});

const data = await response.json();
console.log(data);

This documentation is automatically generated from the OpenAPI specification.