Skip to main content

RequestableObject

Properties

NameTypeDescriptionNotes
idstrId of the requestable object itself[optional]
namestrHuman-readable display name of the requestable object[optional]
createddatetimeThe time when the requestable object was created[optional]
modifieddatetimeThe time when the requestable object was last modified[optional]
descriptionstrDescription of the requestable object.[optional]
typeRequestableObjectType[optional]
request_statusRequestableObjectRequestStatus[optional]
identity_request_idstrIf requestStatus is PENDING, indicates the id of the associated account activity.[optional]
owner_refIdentityReferenceWithNameAndEmail[optional]
request_comments_requiredboolWhether the requester must provide comments when requesting the object.[optional]
}

Example

from sailpoint.v3.models.requestable_object import RequestableObject

requestable_object = RequestableObject(
id='2c9180835d2e5168015d32f890ca1581',
name='Applied Research Access',
created='2017-07-11T18:45:37.098Z',
modified='2018-06-25T20:22:28.104Z',
description='Access to research information, lab results, and schematics.',
type='ACCESS_PROFILE',
request_status=,
identity_request_id='',
owner_ref=sailpoint.v3.models.identity_reference_with_name_and_email.IdentityReferenceWithNameAndEmail(
type = 'IDENTITY',
id = '5168015d32f890ca15812c9180835d2e',
name = 'Alison Ferguso',
email = '[email protected]', ),
request_comments_required=False
)

[Back to top]