Skip to main content

ActivityInsights

Insights into account activity

Properties

NameTypeDescriptionNotes
account_idstrUUID of the account[optional]
usage_daysintThe number of days of activity[optional]
usage_days_stateEnum [ 'COMPLETE', 'UNKNOWN' ]Status indicating if the activity is complete or unknown[optional]
}

Example

from sailpoint.v3.models.activity_insights import ActivityInsights

activity_insights = ActivityInsights(
account_id='c4ddd5421d8549f0abd309162cafd3b1',
usage_days=45,
usage_days_state='COMPLETE'
)

[Back to top]