Method: caseAlerts.move

Full name: projects.locations.instances.cases.caseAlerts.move

Moves a CaseAlert to a different Case. Use this method to reassign an alert to a more appropriate case. The alert must be open, and both the source and destination cases must also be open.

HTTP request


POST https://chronicle.africa-south1.rep.googleapis.com/v1beta/{name}:move

Path parameters

Parameters
name

string

Required. The CaseAlert to move. The CaseAlert's name field is used to identify the CaseAlert. Format: projects/{project}/locations/{location}/instances/{instance}/cases/{case}/caseAlerts/{caseAlert}:move

Request body

The request body contains data with the following structure:

JSON representation
{
  "destinationCaseId": integer
}
Fields
destinationCaseId

integer

Optional. The case to which the alert will be moved to.

Response body

Response message for caseAlerts.move.

If successful, the response body contains data with the following structure:

JSON representation
{
  "newCaseId": integer,
  "valid": boolean,
  "errors": [
    string
  ]
}
Fields
newCaseId

integer

Output only. The new case to which the alert was moved to, or null if the move failed.

valid

boolean

Output only. Was the operation valid.

errors[]

string

Output only. Errors raised when moving the alert

Authorization scopes

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/cloud-platform
  • https://www.googleapis.com/auth/chronicle
  • https://www.googleapis.com/auth/chronicle.readonly

For more information, see the Authentication Overview.

IAM Permissions

Requires the following IAM permission on the name resource:

  • chronicle.caseAlerts.move

For more information, see the IAM documentation.