Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/AccountActivityDocument.md
2025-05-07 14:37:48 +00:00

3.3 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
account-activity-document AccountActivityDocument AccountActivityDocument AccountActivityDocument powershellsdk
powershell
PowerShell
sdk
AccountActivityDocument
AccountActivityDocument
/tools/sdk/powershell/v3/models/account-activity-document
SDK
Software Development Kit
AccountActivityDocument
AccountActivityDocument

AccountActivityDocument

Properties

Name Type Description Notes
Id String ID of account activity. [optional]
Action String Type of action performed in the activity. [optional]
Created System.DateTime ISO-8601 date-time referring to the time when the object was created. [optional]
Modified System.DateTime ISO-8601 date-time referring to the time when the object was last modified. [optional]
Synced String ISO-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]
Stage String Activity's current stage. [optional]
Status String Activity's current status. [optional]
Requester ActivityIdentity [optional]
Recipient ActivityIdentity [optional]
TrackingNumber String Account activity's tracking number. [optional]
Errors []String Errors provided by the source while completing account actions. [optional]
Warnings []String Warnings provided by the source while completing account actions. [optional]
Approvals []Approval Approvals performed on an item during activity. [optional]
OriginalRequests []OriginalRequest Original actions that triggered all individual source actions related to the account action. [optional]
ExpansionItems []ExpansionItem Controls that translated the attribute requests into actual provisioning actions on the source. [optional]
AccountRequests []AccountRequest Account data for each individual source action triggered by the original requests. [optional]
Sources String Sources involved in the account activity. [optional]

Examples

  • Prepare the resource
$AccountActivityDocument = Initialize-AccountActivityDocument  -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
$AccountActivityDocument | ConvertTo-JSON

[Back to top]