Skip to main content

Jitactivationextendresponse

Properties

NameTypeDescriptionNotes
idstrWorkflow or business identifier for this activation.[required]
activation_idstrPersistent activation record identifier for this JIT activation.[required]
connection_idstrEntitlement connection identifier for the activation.[required]
activation_period_extension_minsintExtension applied to the activation period, in minutes.[required]
statusActivationworkflowstatus[required]
start_timedatetimeTime associated with this extend request (ISO-8601).[required]
}

Example

from sailpoint.jit_activations.models.jitactivationextendresponse import Jitactivationextendresponse

jitactivationextendresponse = Jitactivationextendresponse(
id='jit-activation-abc123',
activation_id='8a9b0c1d-2e3f-4a5b-6c7d-8e9f0a1b2c3d',
connection_id='757fb803-9024-5861-e510-83a56e4c5bd3',
activation_period_extension_mins=120,
status='PROVISIONED',
start_time='2025-10-11T21:23:15Z'
)

[Back to top]