...
Azure AD Marketplace app
Install this app in your Azure AD instance to get quickly up and running with user sync.SCIM - Getting started - Custom Enterprise App
Create a custom enterprise app for more configuration optionsSCIM API - Swagger documentation
User the SCIM REST API if you want to create your customized connector.
Authentication
The SCIM API requires a JWT bearer token. Please get in touch with Talentech Support in order to get a token. Below is an example of an API call to the Users endpoint with a token.
Code Block |
---|
curl 'https://api.talentech.io/scim/v1/Users' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6************' \
|