Skip to main content

AccountActivitySearchedItem

Properties

NameTypeDescriptionNotes
IdStringID of account activity.[optional]
ActionStringType of action performed in the activity.[optional]
CreatedSystem.DateTimeISO-8601 date-time referring to the time when the object was created.[optional]
ModifiedSystem.DateTimeISO-8601 date-time referring to the time when the object was last modified.[optional]
SyncedStringISO-8601 date-time referring to the date-time when object was queued to be synced into search database for use in the search API. This date-time changes anytime there is an update to the object, which triggers a synchronization event being sent to the search database. There may be some delay between the synced time and the time when the updated data is actually available in the search API.[optional]
StageStringActivity's current stage.[optional]
StatusStringActivity's current status.[optional]
RequesterActivityIdentity[optional]
RecipientActivityIdentity[optional]
TrackingNumberStringAccount activity's tracking number.[optional]
Errors[]StringErrors provided by the source while completing account actions.[optional]
Warnings[]StringWarnings provided by the source while completing account actions.[optional]
Approvals[]Approval1Approvals performed on an item during activity.[optional]
OriginalRequests[]OriginalRequestOriginal actions that triggered all individual source actions related to the account action.[optional]
ExpansionItems[]ExpansionItemControls that translated the attribute requests into actual provisioning actions on the source.[optional]
AccountRequests[]AccountRequestAccount data for each individual source action triggered by the original requests.[optional]
SourcesStringSources involved in the account activity.[optional]

Examples

  • Prepare the resource
$AccountActivitySearchedItem = Initialize-PSSailpoint.V2024AccountActivitySearchedItem  -Id 2c91808375d8e80a0175e1f88a575222 `
-Action Identity Refresh. `
-Created 2018-06-25T20:22:28.104Z `
-Modified 2018-06-25T20:22:28.104Z `
-Synced 2018-06-25T20:22:28.104Z `
-Stage Completed `
-Status Complete `
-Requester null `
-Recipient null `
-TrackingNumber 61aad0c9e8134eca89e76a35e0cabe3f `
-Errors null `
-Warnings null `
-Approvals null `
-OriginalRequests null `
-ExpansionItems null `
-AccountRequests null `
-Sources smartsheet-test, airtable-v4, IdentityNow
  • Convert the resource to JSON
$AccountActivitySearchedItem | ConvertTo-JSON

[Back to top]