Skip to main content

removeIntegrators

You can use this method to unassign a specific endpoint as an integrator. The endpoint remains available, but it will no longer serve as the integrator.

Note

Integrators are automatically removed if an integration is deleted.

An integrator is an endpoint that serves as the communication link between GravityZone and the integrated third-party platform.

Parameters

Parameter

Description

Included in request

Type

Values

targetIds

The ID of the endpoint that you want to unassigned as an integrator.

Mandatory

Array of objects

No additional requirements.

Return value

Attribute

Type

Description

result

Object

Contains the result of the request.

result

Attribute

Type

Description

success

Boolean

Indicates if the request was successful.

Example

Request:

{
  "method": "removeIntegrators",
  "id": "43209290-cc7a-4d8a-a26d-8548117b8fa9",
  "jsonrpc": "2.0",
  "params": {
    "targetIds": [
      "67fcffe8bf190f9d03b3487e"
    ]
  }
}

Response:

{
  "id": "43209290-cc7a-4d8a-a26d-8548117b8fa9",
  "jsonrpc": "2.0",
  "result": {
    "success": true
  }
}