Reference 360 SaaS
- Reference 360 SaaS
- All Products
/rdm-service/external/v3/export
Field
| Type
| Description
|
---|---|---|
dateFormat
| String
| Format used for dates. Use one of the following formats:
|
containerType
| String
| Type of asset that contains code values. Value must be
crosswalk .
|
containerId
| String
| ID of the crosswalk.
You can find the ID of assets in
Reference 360 or use REST APIs to retrieve the IDs. For more information, see
Asset IDs.
|
pageSize
| Number
| Optional. Number of records to display on each page. The maximum value is
10000 . Default is
10000 .
|
page
| Number
| Optional. Page number to display. Default is
0 .
|
pit
| String
| Date to retrieve the point in time information about the crosswalk. Use the ISO format: yyyy-mm-dd.
|
POST https://use4-mdm.dm-us.informaticacloud.com/rdm-service/external/v3/export HTTP/1.1 Content-Type: application/json Accept: application/json IDS-SESSION-ID: XXXXXXXXXXXXXXXXXXXXXX Content-Length: 220 { "dateFormat":"ISO", "containerType":"crosswalk", "containerId":"c27e43cad990f4e57361ae60", "pageSize":10000, "page":0, "pit":"2021-05-21", "repeatHeaders":false }
HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 Content-Length: 366 { "pageSize":2, "page":0, "totalNumberOfElements":2, "numberOfElements":2, "lastPage":true, "firstPage":true, "content":[ { "fields":{ "toCode":"DEU", "fromCode":"DE" }, "sourcePKey":"DE_DEU" }, { "fields":{ "toCode":"AFG", "fromCode":"AF" }, "sourcePKey":"AF_AFG" } ] }