- SAML
- SCIM
- Management APIOrganizations
- Management APISAML Connections
- Management APIScim Directories
- Management APISetup Urls
POST
1 import requests 2 3 # Get SCIM Group (GET /v1/scim/groups/:id) 4 response = requests.get( 5 "https://api.ssoready.com/v1/scim/groups/scim_group_...", 6 headers={ 7 "Authorization": "Bearer " 8 }, 9 ) 10 11 print(response.json())