List All Integration Points for a Source System

Topics:

Use the following REST call to list integration points for a source system. This REST call is available as of Version 3.11.

GET: /api/v1/sourcesystem/integration/{sourceId}

Topics:

Example:

GET https://localhost:9500/api/v1/sourcesystem/integration/4e5b765f-b807-483b-8c56-1fcc683b0b98

-- response --

{
  "status": "OK",
  "code": 0,
  "message": null,
  "developerMessage": null,
  "responseType": "java.util.ArrayList",
  "response": [
    {
      "id": "6cb6d742-3f23-4095-a9d1-deaeb88edeaf",
      "sourceId": "4e5b765f-b807-483b-8c56-1fcc683b0b98",
      "sourceLocationType": "database",
      "sourceLocation": {
        "protocol": "jdbc",
        "hostName": "ahost",
        "domain": "acme.com",
        "port": null,
        "userName": "user",
        "password": "secret",
        "resourceLocation": "/customers",
        "resourceName": null
      },
      "sourceResourceType": null,
      "targetId": "a8be97a2-1688-4855-8d76-92f86095e292",
	…