Retrieve Integrations

get

/ic/api/integration/v1/integrations

Retrieves information about all integrations ordered by the last updated time.

Request

Supported Media Types
Query Parameters
  • Includes additional details in the response about connections in the integration or about the adapters for the connections. Valid values: connection, connection.adapter.
  • Use with the offset parameter for paginating through the returned results. The limit is the maximum number of items to return at one time. For example, offset=3&limit=16 indicates to list integrations starting at the 4th item, and the list will contain 16 items.
  • Use with the limit parameter for paginating through the returned results. The offset is the starting point from which to return records. For example, offset=3&limit=16 indicates to list integrations starting at the 4th item, and the list will contain 16 items.
  • Orders results by integration name or last updated time.

    Valid values:

    • name: Order integrations by integration name. Example: orderBy=name.
    • time: Order integrations by the last updated time. Example: orderBy=time.
  • Filters integrations by integration name, status, type, and integration style.

    Valid parameters:

    • name: Name of the integration. Supports exact matches or contains. For example:
      • To retrieve integrations that are an exact match in the integration name, specify:
        q={name:'My Integration Name'}
      • To retrieve all integrations that contain the specified string in the integration name, specify:
        q={name: /Oracle/}
    • status: Status of the integration. Valid values: ACTIVATED, CONFIGURED, INPROGRESS, FAILEDACTIVATION.

      For example, to retrieve all integrations that contain SC2RN and have the status configured, specify:

      {name : /SC2RN/, status : 'CONFIGURED'}
    • type: type of integration.

      Valid values: PREBUILT, CUSTOM, DEVELOPED.

    • style: Style of the integration. Valid values:
      • freeform_mapmydata
        - Application-Driven Orchestrated Integration
      • freeform_scheduled
        - Scheduled Orchestration Integration
      • template_mapmydata
        - Basic Routing Map My Data Integration
      • template_subscribetooic
        - Subscribe to OIC Integration
      • template_publishtooic
        - Publish to OIC Integration
Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : integrations
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : integrationlist
Type: object
Show Source
Nested Schema : IntegrationDependencyRs
Type: object
Show Source
Nested Schema : endPoints
Type: array
Show Source
Nested Schema : filmstrip
Type: array
Show Source
Nested Schema : properties
Type: array
Show Source
Nested Schema : trackingVariables
Type: array
Show Source
Nested Schema : certificates
Type: array
Show Source
Nested Schema : connections
Type: array
Show Source
Nested Schema : integrations
Type: array
Show Source
Nested Schema : libraries
Type: array
Show Source
Nested Schema : lookups
Type: array
Show Source
Nested Schema : CertificateDependencyRs
Type: object
Show Source
Nested Schema : ConnectionDependencyRs
Type: object
Show Source
Nested Schema : LocalIntegrationDependencyRs
Type: object
Show Source
Nested Schema : LibraryDependencyRs
Type: object
Show Source
Nested Schema : LookupDependencyRs
Type: object
Show Source
Nested Schema : EndPointRs
Type: object
Show Source
Nested Schema : ConnectionBaseRs
Type: object
Show Source
Nested Schema : FilmstripRs
Type: object
Show Source
Nested Schema : IntegrationPropRs
Type: object
Show Source
Nested Schema : TrackingVariableType
Type: object
Show Source
Nested Schema : ReferenceType
Type: object
Show Source
Nested Schema : WirepointType
Type: object
Show Source
Nested Schema : property
Type: array
Show Source
Nested Schema : property
Type: array
Show Source
Nested Schema : PropertyType
Type: object
Show Source
Nested Schema : property
Type: array
Show Source
Nested Schema : resourceGroup
Type: array
Show Source
Nested Schema : ResourceGroupType
Type: object
Show Source
Nested Schema : property
Type: array
Show Source
Nested Schema : resource
Type: array
Show Source
Nested Schema : ResourceType
Type: object
Show Source
Nested Schema : property
Type: array
Show Source

400 Response

Malformed parameters

500 Response

Server error
Back to Top

Examples

The following examples show how to retrieve details about integrations 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 only integrations that contain SC2RN or sc2rn in the name and have the status CONFIGURED

curl -G -X GET -H 'Authorization: Bearer access_token' -H "Accept:application/json" --data-urlencode "q={name: /SC2RN/, status: 'CONFIGURED'}" https://integration.us.oraclecloud.com/ic/api/integration/v1/integrations

Example: Get all integrations with additional details for each connection

curl -G -X GET -H 'Authorization: Bearer access_token' -H "Accept:application/json" -d "expand=connection" https://integration.us.oraclecloud.com/ic/api/integration/v1/integrations

Example: Paginate through returned integrations

Pagination is done with limit and offset. In this example, we list integrations starting at the fourth item. The list contains 16 items.

curl -G -X GET -H 'Authorization: Bearer access_token' -H "Accept:application/json" -d "offset=3&limit=16" https://integration.us.oraclecloud.com/ic/api/integration/v1/integrations

Example: Get integrations ordered by the integration name in alphabetical order

curl -G -X GET -H 'Authorization: Bearer access_token' -H "Accept:application/json" -d "orderBy=name" https://integration.us.oraclecloud.com/ic/api/integration/v1/integrations

Example: Combine parameters

To combine query parameters, use q with the --data-urlencode option. The other parameters can be added after the -d option.

curl -G -X GET -H 'Authorization: Bearer access_token' -H "Accept:application/json" --data-urlencode "q={name: /SC2RN/, status: 'CONFIGURED', type: 'DEVELOPED', style: 'freeform_mapmydata'}" -d "orderBy=name&offset=12&limit=5&expand=connection" https://integration.us.oraclecloud.com/ic/api/integration/v1/integrations

Example: Get all integrations

Request:

curl -X GET -H 'Authorization: Bearer access_token' -H "Accept:application/json" https://integration.us.oraclecloud.com/ic/api/integration/v1/integrations

Response Body:

The following example shows the contents of the response body in JSON format.

{
	"hasMore": true,
	"items": [{
		"code": "EXTRAC_BIP_REPORT_FROM_PDH",
		"compatible": true,
		"created": "2019-05-07T14:04:31.908+0000",
		"createdBy": "exampleuser1@example.com",
		"endPointURI": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/integrations/EXTRAC_BIP_REPORT_FROM_PDH%7C01.00.0000/schedule/jobs",
		"endPoints": [{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "PUBLICREPORTSVC",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/PUBLICREPORTSVC",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/PUBLICREPORTSVC",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "extractReport",
			"role": "TARGET"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "FTP_CONN_96_06",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/FTP_CONN_96_06",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/FTP_CONN_96_06",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "writeToFTP",
			"role": "TARGET"
		}],
		"id": "EXTRAC_BIP_REPORT_FROM_PDH|01.00.0000",
		"lastUpdated": "2019-05-07T16:14:23.963+0000",
		"lastUpdatedBy": "exampleuser1@example.com",
		"links": [{
			"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/integrations/EXTRAC_BIP_REPORT_FROM_PDH%7C01.00.0000",
			"rel": "self"
		},
		{
			"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/integrations/EXTRAC_BIP_REPORT_FROM_PDH%7C01.00.0000",
			"rel": "canonical"
		}],
		"lockedFlag": false,
		"name": "Extract BIP report from PDH",
		"pattern": "Scheduled",
		"patternDescription": "Scheduled",
		"payloadTracingEnabledFlag": true,
		"percentageComplete": 100,
		"projectType": "DEVELOPED",
		"recordEnabledFlag": false,
		"scheduleApplicableFlag": true,
		"scheduleDefinedFlag": false,
		"status": "ACTIVATED",
		"style": "FREEFORM",
		"styleDescription": "Orchestration",
		"tracingEnabledFlag": true,
		"trackingVariables": [{
			"id": "tracking_var_1",
			"name": "startTime",
			"output": {
				"messageContextRef": {
					"refUri": "messagecontext_2"
				},
				"name": "output_3"
			},
			"primary": true,
			"refUri": "",
			"role": "tracking_var_1",
			"xpath": "/schedule/startTime"
		},
		{
			"id": "tracking_var_2",
			"name": "tracking_var_2",
			"output": {
				"messageContextRef": {
					"refUri": "messagecontext_4"
				},
				"name": "output_5"
			},
			"primary": false,
			"refUri": "",
			"role": "tracking_var_2",
			"xpath": ""
		},
		{
			"id": "tracking_var_3",
			"name": "tracking_var_3",
			"output": {
				"messageContextRef": {
					"refUri": "messagecontext_6"
				},
				"name": "output_7"
			},
			"primary": false,
			"refUri": "",
			"role": "tracking_var_3",
			"xpath": ""
		}],
		"version": "01.00.0000"
	},
	{
		"code": "RSQGROUPCONSUMER",
		"compatible": true,
		"created": "2019-05-06T21:54:48.181+0000",
		"createdBy": "exampleuser2@example.com",
		"description": "Find the active groups to resequence.",
		"endPoints": [{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQMESSAGECONSUMER",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQMESSAGECONSUMER",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQMESSAGECONSUMER",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "ProcessMessages",
			"role": "TARGET"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQ_DB",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "getActiveGroups",
			"role": "TARGET"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQ_DB",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "lockGroup",
			"role": "TARGET"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQ_DB",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "RSQConfig",
			"role": "TARGET"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQ_DB",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "ActiveGroups",
			"role": "TARGET"
		}],
		"id": "RSQGROUPCONSUMER|01.00.0000",
		"lastUpdated": "2019-05-06T21:54:50.026+0000",
		"lastUpdatedBy": "exampleuser2@example.com",
		"links": [{
			"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/integrations/RSQGROUPCONSUMER%7C01.00.0000",
			"rel": "self"
		},
		{
			"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/integrations/RSQGROUPCONSUMER%7C01.00.0000",
			"rel": "canonical"
		}],
		"lockedFlag": false,
		"name": "RSQGroupConsumer",
		"packageName": "oic.rsq",
		"pattern": "Scheduled",
		"patternDescription": "Scheduled",
		"payloadTracingEnabledFlag": false,
		"percentageComplete": 100,
		"projectType": "DEVELOPED",
		"recordEnabledFlag": false,
		"scheduleApplicableFlag": true,
		"scheduleDefinedFlag": true,
		"status": "CONFIGURED",
		"style": "FREEFORM",
		"styleDescription": "Orchestration",
		"tracingEnabledFlag": false,
		"trackingVariables": [{
			"id": "tracking_var_1",
			"name": "startTime",
			"output": {
				"messageContextRef": {
					"refUri": "messagecontext_2"
				},
				"name": "output_3"
			},
			"primary": true,
			"refUri": "",
			"role": "tracking_var_1",
			"xpath": "/schedule/startTime"
		},
		{
			"id": "tracking_var_2",
			"name": "tracking_var_2",
			"output": {
				"messageContextRef": {
					"refUri": "messagecontext_4"
				},
				"name": "output_5"
			},
			"primary": false,
			"refUri": "",
			"role": "tracking_var_2",
			"xpath": ""
		},
		{
			"id": "tracking_var_3",
			"name": "tracking_var_3",
			"output": {
				"messageContextRef": {
					"refUri": "messagecontext_6"
				},
				"name": "output_7"
			},
			"primary": false,
			"refUri": "",
			"role": "tracking_var_3",
			"xpath": ""
		}],
		"version": "01.00.0000"
	},
	{
		"code": "RSQMESSAGECONSUMER",
		"compatible": true,
		"created": "2019-05-06T21:54:48.084+0000",
		"createdBy": "exampleuser2@example.com",
		"description": "Process all messages of a resequencing group.",
		"endPoints": [{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQMESSAGECONSUMER",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQMESSAGECONSUMER",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQMESSAGECONSUMER",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "RSQMessageConsumer",
			"role": "SOURCE"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQ_DB",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "readMessages",
			"role": "TARGET"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQ_DB",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "markProcessing",
			"role": "TARGET"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQ_DB",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "deleteMessage",
			"role": "TARGET"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQ_DB",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "markGroupDone",
			"role": "TARGET"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "PRESEEDED_COLLOCATED_CONN_1741",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/PRESEEDED_COLLOCATED_CONN_1741",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/PRESEEDED_COLLOCATED_CONN_1741",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "Dispatcher",
			"role": "TARGET"
		}],
		"id": "RSQMESSAGECONSUMER|01.00.0000",
		"lastUpdated": "2019-05-06T21:54:49.737+0000",
		"lastUpdatedBy": "exampleuser2@example.com",
		"links": [{
			"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/integrations/RSQMESSAGECONSUMER%7C01.00.0000",
			"rel": "self"
		},
		{
			"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/integrations/RSQMESSAGECONSUMER%7C01.00.0000",
			"rel": "canonical"
		}],
		"lockedFlag": false,
		"name": "RSQMessageConsumer",
		"packageName": "oic.rsq",
		"pattern": "Orchestration",
		"patternDescription": "Notification",
		"payloadTracingEnabledFlag": false,
		"percentageComplete": 100,
		"projectType": "DEVELOPED",
		"recordEnabledFlag": false,
		"scheduleApplicableFlag": false,
		"scheduleDefinedFlag": false,
		"status": "CONFIGURED",
		"style": "FREEFORM",
		"styleDescription": "Orchestration",
		"tracingEnabledFlag": false,
		"trackingVariables": [{
			"id": "tracking_var_1",
			"name": "id",
			"output": {
				"messageContextRef": {
					"refUri": "messagecontext_203"
				},
				"name": "output_204"
			},
			"primary": true,
			"refUri": "",
			"role": "tracking_var_1",
			"xpath": "/execute/request-wrapper/id"
		},
		{
			"id": "tracking_var_2",
			"name": "type",
			"output": {
				"messageContextRef": {
					"refUri": "messagecontext_205"
				},
				"name": "output_206"
			},
			"primary": false,
			"refUri": "",
			"role": "tracking_var_2",
			"xpath": "/execute/request-wrapper/type"
		},
		{
			"id": "tracking_var_3",
			"name": "tracking_var_3",
			"output": {
				"messageContextRef": {
					"refUri": "messagecontext_207"
				},
				"name": "output_208"
			},
			"primary": false,
			"refUri": "",
			"role": "tracking_var_3",
			"xpath": ""
		}],
		"version": "01.00.0000"
	},
	{
		"code": "RSQMANAGER",
		"compatible": true,
		"created": "2019-05-06T21:54:47.977+0000",
		"createdBy": "exampleuser2@example.com",
		"description": "Resequencer manager.",
		"endPoints": [{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQMANAGER",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQMANAGER",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQMANAGER",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "UpdateConfig",
			"role": "SOURCE"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQMANAGER",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQMANAGER",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQMANAGER",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "RecoverResumeGroup",
			"role": "SOURCE"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQMANAGER",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQMANAGER",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQMANAGER",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "GetConfigs",
			"role": "SOURCE"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQ_DB",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "UpdateConfigTable",
			"role": "TARGET"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQ_DB",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "DeleteMessage",
			"role": "TARGET"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQ_DB",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "ActivateGroup",
			"role": "TARGET"
		},
		{
			"connection": {
				"agentRequired": false,
				"agentSupported": false,
				"id": "RSQ_DB",
				"links": [{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "self"
				},
				{
					"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/connections/RSQ_DB",
					"rel": "canonical"
				}],
				"metadataDownloadSupportedFlag": false,
				"testStatus": false
			},
			"name": "GetTypeConfigs",
			"role": "TARGET"
		}],
		"id": "RSQMANAGER|01.00.0000",
		"lastUpdated": "2019-05-06T21:54:49.328+0000",
		"lastUpdatedBy": "exampleuser2@example.com",
		"links": [{
			"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/integrations/RSQMANAGER%7C01.00.0000",
			"rel": "self"
		},
		{
			"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/integrations/RSQMANAGER%7C01.00.0000",
			"rel": "canonical"
		}],
		"lockedFlag": false,
		"name": "RSQManager",
		"packageName": "oic.rsq",
		"pattern": "Orchestration",
		"patternDescription": "Notification",
		"payloadTracingEnabledFlag": false,
		"percentageComplete": 100,
		"projectType": "DEVELOPED",
		"recordEnabledFlag": false,
		"scheduleApplicableFlag": false,
		"scheduleDefinedFlag": false,
		"status": "CONFIGURED",
		"style": "FREEFORM",
		"styleDescription": "Orchestration",
		"tracingEnabledFlag": false,
		"version": "01.00.0000"
	}],
	"links": [{
		"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/integrations/",
		"rel": "self"
	},
	{
		"href": "https://integration.us.oraclecloud.com:443/ic/api/integration/v1/integrations/",
		"rel": "canonical"
	}],
	"totalResults": 127
}
Back to Top