Sync tokens

Create a extension contact sync token

POSThttp://127.0.0.1:8888/api/user/extension_contacts/sync_tokens
Response

Created

Body
tokenstring

The sync token.
Clients should treat the sync token as an opaque string and should never try to assemble it.
This document imposes no constraints on the format and clients should never impose any.

Example: "RQ2dX9ZC7VuWlVpXXvad2dL3lyhjnN-7eOw95wXymoo."
Request
const response = await fetch('http://127.0.0.1:8888/api/user/extension_contacts/sync_tokens', {
    method: 'POST',
    headers: {},
});
const data = await response.json();
Response
{
  "token": "RQ2dX9ZC7VuWlVpXXvad2dL3lyhjnN-7eOw95wXymoo."
}