cURL
curl --request POST \ --url https://your-sift-api-url.com/api/v1/external-sync \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{}'
{ "externalSync": { "scimServerUrl": "<string>", "tokenLifetimeSeconds": 123, "organizationId": "<string>", "mostRecentSyncDate": "2023-11-07T05:31:56Z", "mostRecentSyncByUserId": "<string>", "tokenCreatedDate": "2023-11-07T05:31:56Z", "mostRecentTokenByUserId": "<string>" }, "existingUserCount": 123, "addedToOrganizationUserIds": [ "<string>" ], "createdUsers": [ { "userId": "<string>", "userName": "<string>", "organizations": [ { "organizationId": "<string>", "organizationName": "<string>" } ] } ], "deactivatedUserIds": [ "<string>" ], "existingGroupCount": 123, "createdUserGroups": [ { "name": "<string>", "isDefault": true, "isExternal": true, "userGroupId": "<string>", "roleId": "<string>", "resources": { "allAssets": true, "assetIds": [ "<string>" ] }, "userIds": [ "<string>" ] } ], "deletedUserGroupNames": [ "<string>" ] }
Synchronizes an organization’s users and groups
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The body is of type object.
object
A successful response.
Show child attributes
Was this page helpful?