Skip to main content

IdentitySyncPayload

Properties

NameTypeDescriptionNotes
typestrPayload type.[required]
data_jsonstrPayload type.[required]
}

Example

from sailpoint.v2024.models.identity_sync_payload import IdentitySyncPayload

identity_sync_payload = IdentitySyncPayload(
type='SYNCHRONIZE_IDENTITY_ATTRIBUTES',
data_json='{"identityId":"2c918083746f642c01746f990884012a"}'
)

[Back to top]