Update a Mapping Item

Topics:

Use the following REST call to update a mapping item. This REST call is available as of Version 3.11.

PUT: /api/v1/sourcesystem/integration/mapping/item/update

Topics:

Parameters (body): Mapping Item Entity

Content type: application/json

Example:

PUT https://localhost:9500/api/v1/sourcesystem/integration/mapping/item/update

Content-Type: application/json

{
    "id": "cb1af21e-7335-4dbd-85fa-82eaf27d2634",
    "mappedItem": "FNAME",
    "mappingId": "4ca397e9-7c39-432f-abe7-c150f193e11b",
    "idsDocElementId": "62745a35-1790-4994-a39a-efb0dc63d142",
    "serviceLevelAgreement": "super SLA"
  }

-- response --

{
  "status": "OK",
  "code": 0,
  "message": null,
  "developerMessage": null,
  "responseType": "com.ibi.omni.controller.services.sourcesystem.MappingItemDto",
  "response": {
    "id": "cb1af21e-7335-4dbd-85fa-82eaf27d2634",
    "mappedItem": "FNAME",
    "mappingId": "4ca397e9-7c39-432f-abe7-c150f193e11b",
    "idsDocElementId": "62745a35-1790-4994-a39a-efb0dc63d142",
    "linkSourceName": null,
    "linkSourceId": null,
    "codeSourceName": null,
    "codeSet": null,
    "codeValue": null,
    "serviceLevelAgreement": "super SLA"
  },
  "exception": null
}