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:
|
delimiter
| String
| Delimiter used to separate values. Value must be
ASTERISK ,
CIRCUMFLEX ,
COLON ,
COMMA ,
PIPE ,
SECTION ,
SEMICOLON ,
SPACE , or
TAB .
|
textQualifier
| String
| Symbol used to indicate where a text begins and ends. Value must be
DOUBLE_QUOTE ,
SINGLE_QUOTE , or
NO_QUOTE .
|
startingRow
| String
| Line number from which to start importing data. By default, all rows are imported.
|
filename
| String
| File name for the exported file. Value must end with the
.csv file extension.
|
codepage
| String
| Code page used for the export file. Value must be
UTF8 .
|
containerType | String | Type of asset that contains code values. Value must be
codelist . |
containerKey | String
| Internal ID or alias of a code list. |
filter
| Object
| Optional. Filter criteria for exporting filtered code values. For more information, see
Filter criteria for export version 2 and 3.
|
excludeParentId
| Boolean
| Optional. Indicates whether to include the parent ID of code values in the JSON file. Value is
true or
false . Default is
false .
|
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 .
|
sort
| Array
| Optional. Sort criteria for exporting sorted code values. Values must be comma-separated field names prefixed with their sort directions. The plus symbol (+) indicates ascending order, and the minus symbol (-) indicates descending order. For example,
"_sort": ["+Name","-Code"] indicates to sort the names in the ascending order and codes in the descending order.
|
pit
| String
| Optional. Date or date and time to retrieve the point in time
information about the code list. Use the following ISO formats for
date, and date and time:
|
addLabelsForReferenceAttribute
| Boolean
| Optional. Displays values for reference and dependent attributes based on the display attributes of reference and dependent code lists, respectively.
|
includeMetadataAttributes | Boolean | Optional. Indicates whether to include metadata of the code list
in the JSON format. Default is false . |
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: 356 { "delimiter": "SEMICOLON", "textQualifier": "DOUBLE_QUOTE", "startingRow": "0", "codepage": "UTF8", "dateFormat": "ISO", "filename": "export.json", "containerType": "CODELIST", "containerKey": "ent_country", "pageSize": 3, "page": 0, "pit": "2025-06-18 22-30-24" }
HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 Content-Length: 426 { "pageSize": 3, "page": 0, "totalNumberOfElements": 251, "numberOfElements": 3, "lastPage": false, "firstPage": true, "content": [ { "Code": "AC", "fields": { "Code": "AC", "Name": "Ascension" } }, { "Code": "AD", "fields": { "Code": "AD", "Name": "Andorra" } }, { "Code": "AE", "fields": { "Code": "AE", "Name": "United Arab Emirates" } } ] }