Update a Source System

Topics:

Use the following REST call to update a source system.

PUT: /api/v1/sourcesystem/update

Topics:

Parameters (body): Source Entity

Content type: application/json

Example:

PUT https://localhost:9500/api/v1/sourcesystem/update

Content-Type: application/json

{
  “id”:” 4e5b765f-b807-483b-8c56-1fcc683b0b98”,
  "description": "Sellers of fine products since 1975",
  "internalIndicator": false,
  "name": "Acme",
  "owningBusinessUnitName": "Amalgamated Industries",
  "sensitivity": "hyper sensitive",
  "thirdPartyIntegratorName": "Super Dooper Integration Services",
  "virtualIndicator": false	
}

-- 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
}