Get a Source System By Name

Topics:

Use the following REST call to get a source system by name. This REST call is available as of Version 3.11.

GET: /api/v1/sourcesystem/{name}

Topics:

Parameters: Source Name

Example:

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

-- response --

{
  "status": "OK",
  "code": 0,
  "message": null,
  "developerMessage": null,
  "responseType": "com.ibi.omni.controller.services.sourcesystem.OmniSourceDto",
  "response": {
    "id": "4e5b765f-b807-483b-8c56-1fcc683b0b98",
    "name": "Acme",
    "description": "Sellers of fine products since 1975",
    "owningBusinessUnitId": null,
    "owningBusinessUnitName": "Amalgamated Industries",
    "thirdPartyIntegratorId": null,
    "thirdPartyIntegratorName": "Super Dooper Integration Services",
    "internalIndicator": false,
    "virtualIndicator": false,
    "sensitivity": "hyper sensitive"
  },
  "exception": null
}