Skip to main content

Responseactioncreaterequest

Properties

NameTypeDescriptionNotes
ActionTypeEnum [ "DISABLE_IDENTITY", "DISABLE_ACCOUNT" ]Which response action to run.[required]
IdentityTypeEnum [ "HUMAN" ]Subject type of the response action. v1 supports HUMAN.[required]
IdentityIdStringISC identity id, resolved by the caller from a prior intelligence query.[required]
AccountIds[]StringOne or more account ids. Required for DISABLE_ACCOUNT (1-50 after trim/dedupe); must be omitted for DISABLE_IDENTITY. A single account is sent as a one-element array.[optional]
ContextResponseactioncontext[required]

Examples

  • Prepare the resource
$Responseactioncreaterequest = Initialize-Responseactioncreaterequest -ActionType DISABLE_ACCOUNT `
-IdentityType HUMAN `
-IdentityId 2c918085842e69ae018428c919680149 `
-AccountIds ["2c918085abc000000000000000000001"] `
-Context null
  • Convert the resource to JSON
$Responseactioncreaterequest | ConvertTo-JSON

[Back to top]