Reference 360 SaaS
- Reference 360 SaaS
- All Products
/rdm-service/external/v1/codelists/<code list ID>/codevalues
Field
| Type
| Description
|
---|---|---|
Codes
| String
| Comma-separated list of code values by the value in the Code attribute.
|
Field
| Type
| Description
|
---|---|---|
numberOfRecordsDeleted
| Number
| Number of code values that were deleted successfully.
|
numberOfRecordsFailed
| Number
| Number of code values that were not deleted.
|
deletedRecords
| -
| Lists the code values that were deleted successfully.
|
Code
| String
| Code attribute value for deleted code value.
|
Label
| String
| Display attribute value for deleted code value.
|
failedRecords
| -
| Lists the code values that were not deleted and describes the reasons.
|
Code
| String
| Code attribute value for the code value.
|
label
| String
| Display attribute value for the code value.
|
errorCode
| String
| Error code for the error type.
|
errorSummary
| String
| Explains why the code value was not deleted.
|
DELETE https://use4-mdm.dm-us.informaticacloud.com/rdm-service/external/v1/codelists/34cea9471fe977f7decef5f5/codevalues HTTP/1.1 Content-Type: application/json Content-Length: 30 IDS-SESSION-ID: XXXXXXXXXXXXXXXXXXXXXX { "Codes":[ "DE", "EN" ] }
HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 Content-Length: 345 { "deletedRecords":[ { "Code":"DE", "label":"DELabel" } ], "failedRecords":[ { "Code":"EN", "label":"EnLabel", "errorCauses":[ { "errorCode":"RDM.0010209", "errorSummary":"The code value is used in a Hierarchy" } ] } ], "numberOfRecordsDeleted":1, "numberOfRecordsFailed":1 }