Hi @Shripad Godse ,
Thanks for reaching out and apologies for delay in response in earlier thread.
- Will the SCIM application API be triggered when a new user is added to a configured tenant?
You need to configure your application to automate user provisioning in Micrsoft Entra ID and you need to define the users or groups you like to provision to your application.
If you sync all users and groups, then SCIM API automate the provisioning for all users and groups.
- If yes, what are the default API endpoints and payloads for updating the SCIM application?
SCIM 2.0 is a standardized definition of two endpoints: a /Users
endpoint and a /Groups
endpoint. It uses common REST API endpoints to create, update, and delete objects. The SCIM consists of a predefined schema for common attributes like group name, username, first name, last name and email.
Refer all the request/response -https://learn.microsoft.com/en-us/entra/identity/app-provisioning/use-scim-to-provision-users-and-groups#scim-protocol-requests-and-responses
- I have a multi-tenant Azure AD application and I'm allowing multiple client tenants to use our tenant to sign into my web application. If I add user provisioning to my multi-tenant app, will it add clients users in my SCIM app, or every client needs to add user provisioning into their respective tenants?
If you add user provisioning to your multi-tenant app, this will allow you to provision users and groups from any tenant that has consented to your application. However, each client tenant will need to configure user provisioning settings in their own tenant, such as the mapping of attributes and the scope of users and groups to be provisioned.
Hope this will help.
Thanks,
Shweta
Please remember to "Accept Answer" if answer helped you.