Skip to main content

SourceSyncPayload

Properties

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

Example

from sailpoint.beta.models.source_sync_payload import SourceSyncPayload

source_sync_payload = SourceSyncPayload(
type='SYNCHRONIZE_SOURCE_ATTRIBUTES',
data_json='{"sourceId":"2c918083746f642c01746f990884012a"}'
)

[Back to top]