Skip to main content

RequestableObject

Properties

NameTypeDescriptionNotes
IdStringId of the requestable object itself[optional]
NameStringHuman-readable display name of the requestable object[optional]
CreatedSystem.DateTimeThe time when the requestable object was created[optional]
ModifiedSystem.DateTimeThe time when the requestable object was last modified[optional]
DescriptionStringDescription of the requestable object.[optional]
TypeRequestableObjectType[optional]
RequestStatusRequestableObjectRequestStatus[optional]
IdentityRequestIdStringIf requestStatus is PENDING, indicates the id of the associated account activity.[optional]
OwnerRefIdentityReferenceWithNameAndEmail[optional]
RequestCommentsRequiredBooleanWhether the requester must provide comments when requesting the object.[optional]

Examples

  • Prepare the resource
$RequestableObject = Initialize-PSSailpoint.V2024RequestableObject  -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 null `
-RequestStatus null `
-IdentityRequestId null `
-OwnerRef null `
-RequestCommentsRequired false
  • Convert the resource to JSON
$RequestableObject | ConvertTo-JSON

[Back to top]