Sync items root (informational)
GET
/api/items/sync
const url = 'https://example.com/api/items/sync';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/items/sync \ --header 'Authorization: Bearer <token>'Returns an informational message directing clients to the GraphQL endpoints
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Informational message
Media typeapplication/json
object
message
required
Human-readable status message
string
Example
{ "message": "Sync Process Started"}