1 Message
Import API to update Full names of Assets: How to
Tried to update the full name of Assets using Import API as something like this:
id is the collibra identifier (id)
{
“id”: $collibra_id,
“name”: ",
“resourceType”: “Asset”,
“domain”: {
“id”: “”
},
“type”: {
“name”: “”
}
}
This just created new Assets, but needed t just update the existing assets with updated full names
How can this be done?
pranavpathe
7 Messages
•
50 Points
2 years ago
Hi Aditi,
Try using the below JSON template to update the name of the existing assets using Collibra Import API. It is working for me.
[{
“resourceType”: “Asset”,
“identifier”: {
“id”: “<Asset_Id>”
},
“name”:"<Asset_Name>",
“type”: {
“name”: “<AssetType_Name>”
}
}]
0
0