Table of Contents

Search

  1. Preface
  2. Introducing Reference 360
  3. Getting started with Reference 360
  4. Manage system reference data
  5. Manage reference data sets
  6. Manage code lists
  7. Manage code values
  8. Manage crosswalks
  9. Import data
  10. Manage hierarchies
  11. Manage attributes
  12. Manage workflows
  13. Manage jobs
  14. Reference 360 REST API
  15. Glossary

Reference 360

Reference 360

Delete value mappings of a crosswalk by mapped source and target code values

Delete value mappings of a crosswalk by mapped source and target code values

Delete value mappings of a crosswalk by mapped source and target code values.

POST request

To delete value mappings of a crosswalk by mapped source and target code values, submit a POST request with the following URI:
/rdm-service/external/v2/crosswalks/{crosswalkIdentifier}/mappings
  • You can delete a maximum of 100 value mappings with each request.
  • This API also supports crosswalks created from code lists belonging to different reference data sets.
Use the following parameters in the request body to specify the value mappings of a crosswalk to delete:
Field
Type
Description
action
String
Action to perform.
mappings
Array
List of mappings for the specified crosswalk.
Code
String
Source code value of a crosswalk mapping.
targetCode
String
Target code value of a crosswalk mapping.

POST response

A 204 no content response is returned.

POST example

To delete value mappings of a crosswalk by mapped source and target code values, you might use the following request:
POST https://use4-mdm.dm-us.informaticacloud.com/rdm-service/external/v2/crosswalks/daf0cc189e530b6979ac77ce/mappings HTTP/1.1 Content-Type: application/json Content-Length: 384 { "action":"DELETE", "mappings":[ { "Code":"sourceCode1", "targetCode":"targetCode1" }, { "Code":"sourceCode2", "targetCode":"targetCode2" }, { "Code":"sourceCode3", "targetCode":"targetCode3" }, { "Code":"sourceCode4", "targetCode":"targetCode4" }, { "Code":"sourceCode5", "targetCode":"targetCode5" } ] }
The following sample response shows the no content response:
HTTP/1.1 204 No Content

0 COMMENTS

We’d like to hear from you!