External pull callback (reserved)
Placeholder for async external-pull callbacks. Currently returns not implemented.
Request
Method: GET
Path: /api/sync/pull/callback
Authentication: Not required
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| undefined | string | undefined | No |
Responses
200 - Placeholder response
Examples
cURL
curl -X GET \
-H "Content-Type: application/json" \
http://localhost:3000/api/sync/pull/callback
JavaScript
const response = await fetch('http://localhost:3000/api/sync/pull/callback', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);
This documentation is automatically generated from the OpenAPI specification.