Discussions
Ipdate multiple URLs at a time
22 days ago by Nakul
Hi,
I am able to add the URL with the below code using Jupyter. Is there a way to update the existing URL instead of adding new one? And also I am trying to update multiple ActorId's at a time.
update_payload = {
'Properties': ['Id','ActorId','ActorTypeId','DocUrl','StorageTypeId','Title','DocType.Id'],
"Entity": {
'StorageTypeId': 'URL',
'DocUrl': 'www.yahoo.com',
'Title': 'www.yahoo.com',
'DocType': {'Id': 30},
'ActorTypeId': 'WO',
'ActorId': 10537
}
}