Update multiple attributes with the REST API
Last updated
Was this helpful?
Was this helpful?
curl -X GET 'https://\<your_dgc_environment_url\>/rest/2.0/assets?name=Colette%20Davis'curl -X GET 'https://\<your_dgc_environment_url\>/rest/2.0/assets?assetId=196523f3-59cc-465b-b9a7-0fcf8dcd5578'curl -X PATCH 'https://\<your_collibra_url\>/rest/2.0/attributes/bulk' \
-H 'Content-Type: application/json' \
-d '[
{
"id": "a30b2eee-76ba-48ec-818d-70038dcaaa15",
"value": "Team Lead developer"
},
{
"id": "0e06f395-337f-427a-b708-f73867cec3b7",
"value": ["English", "French"]
}
]'