Reference 360 SaaS
- Reference 360 SaaS
- All Products
/rdm-service/external/v4/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 .
|
containerKey | String
| Internal ID or alias of a crosswalk. |
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/v4/export HTTP/1.1 Content-Type: application/json Accept: application/json IDS-SESSION-ID: XXXXXXXXXXXXXXXXXXXXXX Content-Length: 220 { "delimiter": "SEMICOLON", "textQualifier": "DOUBLE_QUOTE", "startingRow": "0", "codepage": "UTF8", "dateFormat": "ISO", "filename": "export.json", "containerType": "crosswalk", "containerKey": "salesforce_country_enterprise_country", "pageSize": 10000, "page": 0, "pit": "2025-06-18 22-40-24", "repeatHeaders": false }
HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 Content-Length: 366 { "pageSize": 10000, "page": 0, "totalNumberOfElements": 3, "numberOfElements": 3, "lastPage": true, "firstPage": true, "content": [ { "fields": { "toCode": "FR", "fromCode": "SF_FR" }, "sourcePKey": "SF_FR_FR" }, { "fields": { "toCode": "IN", "fromCode": "SF_IN" }, "sourcePKey": "SF_IN_IN" }, { "fields": { "toCode": "US", "fromCode": "SF_US" }, "sourcePKey": "SF_US_US" } ] }