Sift | Docs
APIReferenceREST (HTTP/JSON)External sync service

GetTokenDetails

Get details about the most recent token generated, does not include the token itself

GET
/api/v1/external-sync
curl -X GET "<API_URL>/api/v1/external-sync" \
  -H "Authorization: Bearer <API_KEY>"

A successful response.

{
  "success": true,
  "externalSync": {
    "organizationId": "string",
    "mostRecentSyncDate": "2019-08-24T14:15:22Z",
    "mostRecentSyncByUserId": "string",
    "scimServerUrl": "string",
    "tokenCreatedDate": "2019-08-24T14:15:22Z",
    "tokenLifetimeSeconds": 0,
    "mostRecentTokenByUserId": "string"
  }
}