Skip to main content

Identitycreated

Properties

NameTypeDescriptionNotes
identityIdentitycreatedIdentity[required]
attributesmap[string]objectThe attributes assigned to the identity. Attributes are determined by the identity profile.[required]
}

Example

from sailpoint.triggers.models.identitycreated import Identitycreated

identitycreated = Identitycreated(
identity=sailpoint.triggers.models.identitycreated_identity.identitycreated_identity(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20642',
name = 'Michael Michaels', ),
attributes={"firstname":"John"}
)

[Back to top]