Retrieve Usage of the Lookup

get

/ic/api/integration/v1/lookups/{name}/usage

Lists all the integrations which use the specified lookup.

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : UsageRs
Type: object
Show Source
Nested Schema : connection-usage
Type: array
Connection Usage List
Show Source
Nested Schema : integration-usage
Type: array
Integration Usage List
Show Source
Nested Schema : ConnectionUsageRs
Type: object
Show Source
Nested Schema : IntegrationUsageRs
Type: object
Show Source

404 Response

Lookup not found

412 Response

Precondition failed

500 Response

Server error
Back to Top

Examples

The following example shows how to get the list of integrations which use the specified lookup 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: Get integrations used by the lookup testLookup

curl -X GET -H 'Authorization: Bearer access_token' -H "Accept:application/json" https://design.integration.region.ocp.oraclecloud.com/ic/api/integration/v1/lookups/testLookup/usage?integrationInstance=service-instance
Back to Top