Skip to main content

Accessrequestadminitemstatus

Properties

NameTypeDescriptionNotes
IdStringID of the access request. This is a new property as of 2025. Older access requests may not have an ID.[optional]
NameStringHuman-readable display name of the item being requested.[optional]
TypeEnum [ "ACCESS_PROFILE", "ROLE", "ENTITLEMENT" ]Type of requested object.[optional]
CancelledRequestDetailsRequesteditemstatusCancelledRequestDetails[optional]
ErrorMessages[]Errormessagedto[]List of localized error messages, if any, encountered during the approval/provisioning process.[optional]
StateRequesteditemstatusrequeststate[optional]
ApprovalDetails[]ApprovalstatusdtoApproval details for each item.[optional]
ManualWorkItemDetails[]ManualworkitemdetailsManual work items created for provisioning the item.[optional]
AccountActivityItemIdStringId of associated account activity item.[optional]
RequestTypeAccessrequesttype[optional]
ModifiedSystem.DateTimeWhen the request was last modified.[optional]
CreatedSystem.DateTimeWhen the request was created.[optional]
RequesterAccessitemrequester[optional]
RequestedForRequesteditemstatusRequestedFor[optional]
RequesterCommentRequesteditemstatusRequesterComment[optional]
SodViolationContextRequesteditemstatusSodViolationContext[optional]
ProvisioningDetailsRequesteditemstatusProvisioningDetails[optional]
PreApprovalTriggerDetailsRequesteditemstatusPreApprovalTriggerDetails[optional]
AccessRequestPhases[]AccessrequestphasesA list of Phases that the Access Request has gone through in order, to help determine the status of the request.[optional]
DescriptionStringDescription associated to the requested object.[optional]
StartDateSystem.DateTimeWhen the role access is scheduled for provisioning.[optional]
RemoveDateSystem.DateTimeWhen the role access is scheduled for removal.[optional]
CancelableBooleanTrue if the request can be canceled.[optional] [default to $false]
ReauthorizationRequiredBooleanTrue if re-auth is required.[optional] [default to $false]
AccessRequestIdStringThis is the account activity id.[optional]
ClientMetadatamap[string]StringArbitrary key-value pairs, if any were included in the corresponding access request[optional]

Examples

  • Prepare the resource
$Accessrequestadminitemstatus = Initialize-Accessrequestadminitemstatus  -Id 2c9180926cbfbddd016cbfc7c3b10010 `
-Name AccessProfile1 `
-Type ACCESS_PROFILE `
-CancelledRequestDetails null `
-ErrorMessages null `
-State null `
-ApprovalDetails null `
-ManualWorkItemDetails null `
-AccountActivityItemId 2c9180926cbfbddd016cbfc7c3b10010 `
-RequestType null `
-Modified 2019-08-23T18:52:59.162Z `
-Created 2019-08-23T18:40:35.772Z `
-Requester null `
-RequestedFor null `
-RequesterComment null `
-SodViolationContext null `
-ProvisioningDetails null `
-PreApprovalTriggerDetails null `
-AccessRequestPhases null `
-Description This is the Engineering role that engineers are granted. `
-StartDate 2019-10-21T00:00Z `
-RemoveDate 2019-10-23T00:00Z `
-Cancelable true `
-ReauthorizationRequired true `
-AccessRequestId 2b838de9-db9b-abcf-e646-d4f274ad4238 `
-ClientMetadata {"key1":"value1","key2":"value2"}
  • Convert the resource to JSON
$Accessrequestadminitemstatus | ConvertTo-JSON

[Back to top]