Skip to main content

LifecycleComment

Properties

NameTypeDescriptionNotes
comment_idstrServer-assigned comment identifier.[optional]
authorLifecycleCommentAuthorReference[optional]
commentstrFree-text comment body.[optional]
created_atdatetimeTime when the comment was created (ISO-8601).[optional]
}

Example

from sailpoint.machine_identities_lifecycle_actions.models.lifecycle_comment import LifecycleComment

lifecycle_comment = LifecycleComment(
comment_id='cmt-001',
author=sailpoint.machine_identities_lifecycle_actions.models.lifecycle_comment_author_reference.Lifecycle Comment Author Reference(
type = 'IDENTITY',
id = '2c9180858082150f0180893dbaf44201',
name = 'Pat Manager', ),
comment='Suspending agent until security review completes',
created_at='2026-05-26T19:00Z'
)

[Back to top]