List All Mappings for an Integration Point

Topics:

Use the following REST call to list all mappings for an integration point.

GET: /api/v1/sourcesystem/integration/{integrationPointId}/mapping

Topics:

Parameters: Integration Point ID

Example:

GET https://localhost:9500/api/v1/sourcesystem/integration/6cb6d742-3f23-4095-a9d1-deaeb88edeaf/mapping

-- response --

{
  "status": "OK",
  "code": 0,
  "message": null,
  "developerMessage": null,
  "responseType": "java.util.ArrayList",
  "response": [
    {
      "id": "4ca397e9-7c39-432f-abe7-c150f193e11b",
      "name": "Acme Customer",
      "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
}