Reference 360 SaaS
- Reference 360 SaaS
- All Products
/rdm-service/external/v3/crosswalks/{crosswalkKey}/mappings?Code={code}
Parameter | Type | Description |
---|---|---|
crosswalkKey | String | Internal ID or alias of a crosswalk. |
page | Number | Optional. Page number to display. Default is
0. |
pageSize | Number | Optional. The number of records to display on
each page. Default is 100. Maximum is 10000. |
Code | String | Value in the Code attribute of the source code
value. |
Field | Type | Description |
---|---|---|
pageSize
| Number
| Number of records displayed per page.
|
page
| Number
| Page from which the response was retrieved. |
totalNumberOfElements
| Number
| Total number of records found.
|
numberOfElements
| Number
| Number of records returned in the current page.
|
lastPage
| Boolean
| Indicates whether the current page is the last page in the total result.
|
firstPage
| Boolean
| Indicates whether the current page is the first page in the total result.
|
mappings | Array | Includes the values in the Code attribute of
the target code values. |
Code | String | Source code value of a crosswalk mapping.
|
targetCode | String | Target code value of a crosswalk
mapping. |
GET https://use4-mdm.dm-us.informaticacloud.com/rdm-service/external/v3/crosswalks/sapcountry_to_isocountry/mappings?Code=DE HTTP/1.1 Accept: application/json IDS-SESSION-ID: XXXXXXXXXXXXXXXXXXXXXX
HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 Content-Length: 92 { "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" } ] }