This Beta recipe reflects the documented provider flow but is not evidence of certification or interoperability with every provider release. Test it in a non-production tenant before rollout.
Okta Integration
1. Create SCIM Token
Follow Step 1 above to generate a SCIM token.
2. Configure Okta Application
- Log into Okta Admin Console
- Navigate to Applications → Select your application
- Click the Provisioning tab
- Click Configure API Integration
3. SCIM Connection Settings
Configure the following settings:
| Field | Value |
|---|---|
| SCIM Base URL | https://auth.example.com/scim/v2 |
| Unique Identifier | userName |
| Authentication Mode | HTTP Header |
| Authorization Header | Bearer scim_live_your_token |
4. Test Connection
Click Test API Credentials to verify the connection.
Expected Result: “Credentials verified successfully”
If the test fails:
- Verify the SCIM base URL is correct and accessible
- Check that the token was copied completely (no extra spaces)
- Ensure the token hasn’t expired
- Confirm HTTPS is used (HTTP will fail)
5. Enable Provisioning Features
In Provisioning → To App, enable:
- Create Users: Automatically create users in AuthOS
- Update User Attributes: Sync profile changes
- Deactivate Users: Deactivate users when suspended in Okta
6. Configure Attribute Mappings
Navigate to Provisioning → To App → Attribute Mappings
Recommended mappings:
| Okta Attribute | AuthOS Attribute |
|---|---|
email |
userName |
email |
emails[0].value |
displayName |
displayName |
firstName |
name.givenName |
lastName |
name.familyName |
7. Assign Users and Groups
- Go to Assignments tab
- Click Assign → Assign to People or Assign to Groups
- Select users/groups to provision
- Click Assign
Okta will immediately start provisioning the assigned users to AuthOS.
8. Verify Provisioning
Check AuthOS to confirm users were created:
// List users in the organization
const users = await sso.organizations.listUsers('acme-corp');
console.log('Provisioned users:', users);
Next steps
Complete the SCIM validation guide before production, or return to the provider chooser.