Reference 360 SaaS
- Reference 360 SaaS
- All Products
/rdm-service/external/v2/crosswalks/{crosswalkIdentifier}/mappings?page={page}&pageSize={pageSize}
Field
| Type
| Description
|
---|---|---|
page
| Number
| Page number to display. Default is 0.
|
pageSize
| Number
| Number of records to display on each page. Default is 100.
|
Field
| Type
| Description
|
---|---|---|
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.
|
page
| Number
| Page number to display. Default is 0.
|
pageSize
| Number
| Number of records to display on each page. Default is 100.
|
firstPage
| Boolean
| Indicates whether the current page is the first page of the total results.
|
lastPage
| Boolean
| Indicates whether the current page is the last page of the total results.
|
numberOfElements
| Number
| Number of records returned in the current page.
|
totalNumberOfElements
| Number
| Total number of records found.
|
GET https://use4-mdm.dm-us.informaticacloud.com/rdm-service/external/v2/crosswalks/daf0cc189e530b6979ac77ce/mappings?page=0&pageSize=100 HTTP/1.1 Accept: application/json
HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 Content-Length: 465 { "pageSize":100, "page":0, "totalNumberOfElements":5, "numberOfElements":5, "lastPage":true, "firstPage":true, "mappings":[ { "Code":"code1", "targetCode":"targetCode1" }, { "Code":"code2", "targetCode":"targetCode2" }, { "Code":"code3", "targetCode":"targetCode3" }, { "Code":"code4", "targetCode":"targetCode4" }, { "Code":"code5", "targetCode":"targetCode5" } ] }