Hi, I'm Ask INFA!
What would you like to know?
ASK INFAPreview
Please to access Ask INFA.

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. Monitor Reference 360
  15. Reference 360 REST API
  16. Glossary

Reference 360

Reference 360

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

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

Delete value mappings of a crosswalk by mapped source and target code values based on the internal ID or alias.

POST request

To delete value mappings of a crosswalk by mapped source and target code values based on an internal ID or alias, submit a POST request with the following URI:
/rdm-service/external/v3/crosswalks/{crosswalkKey}/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
crosswalkKey
String
Internal ID or alias of a crosswalk.
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 based on the internal ID or alias, you might use the following request:
POST https://use4-mdm.dm-us.informaticacloud.com/rdm-service/external/v3/crosswalks/sapcountry_to_isocountry/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!