Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/AccessRequestRecommendationItemDetail.md
2025-07-25 19:23:51 +00:00

2.5 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
beta-access-request-recommendation-item-detail AccessRequestRecommendationItemDetail AccessRequestRecommendationItemDetail AccessRequestRecommendationItemDetail pythonsdk
python
Python
sdk
AccessRequestRecommendationItemDetail
BetaAccessRequestRecommendationItemDetail
/tools/sdk/python/beta/models/access-request-recommendation-item-detail
SDK
Software Development Kit
AccessRequestRecommendationItemDetail
BetaAccessRequestRecommendationItemDetail

AccessRequestRecommendationItemDetail

Properties

Name Type Description Notes
identity_id str Identity ID for the recommendation [optional]
access AccessRequestRecommendationItemDetailAccess [optional]
ignored bool Whether or not the identity has already chosen to ignore this recommendation. [optional]
requested bool Whether or not the identity has already chosen to request this recommendation. [optional]
viewed bool Whether or not the identity reportedly viewed this recommendation. [optional]
messages []AccessRecommendationMessage [optional]
translation_messages []TranslationMessage The list of translation messages [optional]
}

Example

from sailpoint.beta.models.access_request_recommendation_item_detail import AccessRequestRecommendationItemDetail

access_request_recommendation_item_detail = AccessRequestRecommendationItemDetail(
identity_id='2c91808570313110017040b06f344ec9',
access=sailpoint.beta.models.access_request_recommendation_item_detail_access.AccessRequestRecommendationItemDetail_access(
                    id = '2c9180835d2e5168015d32f890ca1581', 
                    type = 'ACCESS_PROFILE', 
                    name = 'Employee-database-read-write', 
                    description = 'This item grants an employee read and write access to the database', ),
ignored=True,
requested=True,
viewed=True,
messages=[
                    sailpoint.beta.models.access_recommendation_message.Access Recommendation Message(
                        interpretation = '95% of your peers have this access.', )
                    ],
translation_messages=[{key=recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH, values=[75, department]}]
)

[Back to top]