List All Defined Source Systems

Topics:

Use the following REST call to list all source systems. This REST call is available as of Version 3.11.

GET: /api/v1/sourcesystem

Example:

GET https://localhost:9500/api/v1/sourcesystem

-- response --

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