Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/IdentitySyncPayload.md
2025-02-20 12:59:19 -05:00

926 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-identity-sync-payload IdentitySyncPayload IdentitySyncPayload IdentitySyncPayload pythonsdk
python
Python
sdk
IdentitySyncPayload
V2024IdentitySyncPayload
/tools/sdk/python/v2024/models/identity-sync-payload
SDK
Software Development Kit
IdentitySyncPayload
V2024IdentitySyncPayload

IdentitySyncPayload

Properties

Name Type Description Notes
type str Payload type. [required]
data_json str Payload 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]