Reference 360 SaaS
- Reference 360 SaaS
- All Products
/rdm-service/external/v2/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
hierarchy .
|
containerId
| String
| The ID of the code list.
You can find the ID of assets in
Reference 360 or use REST APIs to retrieve the IDs. For more information, see
Asset IDs.
|
excludeParentId
| Boolean
| Optional. Indicates whether to include the parent ID of code values in the CSV file. Value is
true or
false .
|
includeAssetName
| Boolean
| Optional. Indicates whether to include the Name field of code lists in the JSON file. Value can be
true or
false . Default is
false .
|
POST https://use4-mdm.dm-us.informaticacloud.com/rdm-service/external/v2/export HTTP/1.1 Content-Type: application/json Accept: application/json Host: localhost:8080 Content-Length: 163 IDS-SESSION-ID: XXXXXXXXXXXXXXXXXXXXXX { "dateFormat":"ISO", "containerType":"hierarchy", "containerId":"cbf658b0c0cb82c8323ed9d5", "excludeParentId":false, "includeAssetName":true }
HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 Content-Length: 1114 { "content":[ { "Code":"root1", "children":[ { "Code":"child1_1", "codeListId":"Id of Child 1", "codeListName":"Name of Child 1", "fields":{ "Name":"Name of child 1.1", "Code":"child1_1" } }, { "Code":"child1_2", "codeListId":"Id of Child 1", "codeListName":"Name of Child 1", "fields":{ "Name":"Name of child 1.2", "Code":"child1_2" } } ], "fields":{ "Name":"Name of root 1", "Code":"root1" } }, { "Code":"root2", "children":[ { "Code":"child2_1", "codeListId":"Id of Child 2", "codeListName":"Name of Child 2", "fields":{ "Name":"Name of child 2.1", "Code":"child2_1" } }, { "Code":"child2_2", "codeListId":"Id of Child 2", "codeListName":"Name of Child 2", "fields":{ "Name":"Name of child 2.2", "Code":"child2_2" } } ], "fields":{ "Name":"Name of root 2", "Code":"root2" } } ] }