List Source Systems That Contribute to a Subject

Topics:

Use the following REST call to return all source systems that contribute to a subject.

GET: /api/v1/sourcesystem?subject={subject}

Topics:

Parameters (body): Subject Name

Returns all source systems with integration points that have at least one mapping for the requested subject.

Example:

GET https://server/api/v1/sourcesystem?subject=Customer

-- response --

{
  "status": "OK",
  "code": 0,
  "message": null,
  "developerMessage": null,
  "responseType": "java.util.ArrayList",
  "response": [
    {
      "id": "4e5b765f-b807-483b-8c56-1fcc683b0b98",
      "name": "Acme",
      "description": "Sellers of fine products since 1975"
    }
  ],
  "exception": null
}
 "exception": null
}