Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/PublicIdentityConfig.md
2025-04-01 09:23:12 -04:00

1.7 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-public-identity-config PublicIdentityConfig PublicIdentityConfig PublicIdentityConfig pythonsdk
python
Python
sdk
PublicIdentityConfig
V2025PublicIdentityConfig
/tools/sdk/python/v2025/models/public-identity-config
SDK
Software Development Kit
PublicIdentityConfig
V2025PublicIdentityConfig

PublicIdentityConfig

Details of up to 5 Identity attributes that will be publicly accessible for all Identities to anyone in the org.

Properties

Name Type Description Notes
attributes []PublicIdentityAttributeConfig Up to 5 identity attributes that will be available to everyone in the org for all users in the org. [optional]
modified datetime When this configuration was last modified. [optional]
modified_by IdentityReference [optional]
}

Example

from sailpoint.v2025.models.public_identity_config import PublicIdentityConfig

public_identity_config = PublicIdentityConfig(
attributes=[
                    sailpoint.v2025.models.public_identity_attribute_config.PublicIdentityAttributeConfig(
                        key = 'country', 
                        name = 'Country', )
                    ],
modified='2018-06-25T20:22:28.104Z',
modified_by=sailpoint.v2025.models.identity_reference.IdentityReference(
                    type = 'IDENTITY', 
                    id = '2c9180a46faadee4016fb4e018c20639', 
                    name = 'Thomas Edison', )
)

[Back to top]