Parameter | Default | Description |
---|---|---|
autoRecreate | true | Enable automatic session recreation |
checkAttempts | 3 | Number of check retry attempts |
createAttempts | 3 | Number of create retry attempts |
Type | Who is authenticating | Auto-Recreation | Credentials Storage | Use Case |
---|---|---|---|---|
Credentials-Based | Automated login | ✓ Supported | Stored by Intuned | Everything |
Recorder-Based | Human | ✗ Not supported | N/A | Complex login |
Runtime-Based | Automated login | ✓ Required | Not stored | Changing credentials |
create
API that performs login with credentialsautoRecreate
for automatic renewalautoRecreate
must be false
(requires human intervention)autoRecreate
must be true
(only way to create session)Feature | Credentials-Based | Recorder-Based | Runtime-Based |
---|---|---|---|
Setup complexity | Low | Medium | Low |
Supports MFA/CAPTCHA | Depends | Yes | No |
Credential storage | In Intuned | None | In your system |
Auto-recreation | Optional | No | Required |
Best for | Most scenarios | Complex auth | Dynamic credentials |
autoRecreate
parameter.
Scenario A: Session Valid
autoRecreate: true
) - Preventing simultaneous recreationsauthSessionId
autoRecreate
parameter is configured at the Job levelautoRecreate: true
and an AuthSession expires:
autoRecreate
defaults to true
Scenario | Solution |
---|---|
Simple scraper with login | Credentials-based + Service Account pattern |
User-facing integration | Multi-User pattern with appropriate type |
Complex MFA login | Recorder-based AuthSession |
Geographic restrictions | AuthSession with proxy configuration |