Create a Mapping Item

Topics:

Use the following REST call to create a new mapping item.

POST: /api/v1/sourcesystem/integration/mapping/item/create

Topics:

Parameters (body): Mapping Item Entity

Content type: application/json

Do not include the ID in the mapping item entity when creating a new mapping item. A unique ID will be generated.

Example:

POST https://localhost:9500/api/v1/sourcesystem/integration/mapping/item/create

Content-Type: application/json

{
  "idsDocElementId": "62745a35-1790-4994-a39a-efb0dc63d142",
  "mappedItem": "FNAME",
  "mappingId": "4ca397e9-7c39-432f-abe7-c150f193e11b"
}

-- response --

{
  "status": "CREATED",
  "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": null
  },
  "exception": null
}