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

1.2 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-review-reassign ReviewReassign ReviewReassign ReviewReassign pythonsdk
python
Python
sdk
ReviewReassign
BetaReviewReassign
/tools/sdk/python/beta/models/review-reassign
SDK
Software Development Kit
ReviewReassign
BetaReviewReassign

ReviewReassign

Properties

Name Type Description Notes
reassign []ReassignReference [required]
reassign_to str The ID of the identity to which the certification is reassigned [required]
reason str The reason comment for why the reassign was made [required]
}

Example

from sailpoint.beta.models.review_reassign import ReviewReassign

review_reassign = ReviewReassign(
reassign=[
                    sailpoint.beta.models.reassign_reference.Reassign Reference(
                        id = 'ef38f94347e94562b5bb8424a56397d8', 
                        type = 'ITEM', )
                    ],
reassign_to='ef38f94347e94562b5bb8424a56397d8',
reason='reassigned for some reason'
)

[Back to top]