Skip to main content
GET
/
api
/
v1
/
external-sync
GetTokenDetails
curl --request GET \
  --url https://your-sift-api-url.com/api/v1/external-sync \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "externalSync": {
    "organizationId": "<string>",
    "mostRecentSyncDate": "2023-11-07T05:31:56Z",
    "mostRecentSyncByUserId": "<string>",
    "scimServerUrl": "<string>",
    "tokenCreatedDate": "2023-11-07T05:31:56Z",
    "tokenLifetimeSeconds": 123,
    "mostRecentTokenByUserId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

A successful response.

success
boolean
required
externalSync
object
required