|
Topics: |
Use the following REST call to update a mapping.
PUT https://localhost:9500/api/v1/sourcesystem/integration/mapping/update
Content-Type: application/json
{
"id": "4ca397e9-7c39-432f-abe7-c150f193e11b",
"description": "SELECT CUSTID, FNAME, MNAME, LNAME FROM CUSTOMER;",
"integrationPointId": "6cb6d742-3f23-4095-a9d1-deaeb88edeaf",
"name": "Acme Customer Database",
"targetIdsId": "36de029d-5baa-4f4a-8252-8d1c5c8c2b78",
"version": "1.0.0"
}-- response --
{
"status": "OK",
"code": 0,
"message": null,
"developerMessage": null,
"responseType": "com.ibi.omni.controller.services.sourcesystem.MappingDto",
"response": {
"id": "ac167bd5-c58b-4159-9019-7f2d4d57fa22",
"name": "Acme Customer Database",
"version": "1.0.0",
"targetIdsId": "36de029d-5baa-4f4a-8252-8d1c5c8c2b78",
"integrationPointId": "6cb6d742-3f23-4095-a9d1-deaeb88edeaf",
"description": "SELECT CUSTID, FNAME, MNAME, LNAME FROM CUSTOMER;"
},
"exception": null
}