Retrieve Status of Agent Groups

get

/ic/api/integration/v1/monitoring/agentgroups

Retrieves monitoring data for all agent groups including current availability status.

Request

Query Parameters
  • This is the name of the service instance. You can get this value from the About page where it is specified in the Service instance field.
  • Orders results by name or last updated time.

    Examples:

    /agentgroups?orderBy=time
    /agentgroups?orderBy=name
  • Filters results by agent group name.

    Example:

    {name:'Execution Agents Group'}

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : AgentGroupsMonitoringRs
Type: object
Show Source
Nested Schema : items
Type: array
List of Agent Group
Show Source
Nested Schema : AgentGroupMonitoringRs
Type: object
Show Source
Nested Schema : agents
Type: array
List of Agents
Show Source
Nested Schema : AgentMonitoringRs
Type: object
Show Source

400 Response

Malformed parameters

500 Response

Server error
Back to Top

Examples

The following example shows how to retrieve the status of agent groups by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL. For more information about endpoint URL structure, see Send Requests.

Example: Retrieve Status of Agent Groups

Request:

curl -X GET -H 'Authorization: Bearer access_token' -H "Content-Type:application/json" -d @runIntegration.json https://design.integration.region.ocp.oraclecloud.com/ic/api/integration/v1/monitoring/agentgroups?integrationInstance=service-instance
Back to Top