HomeRecipesAPI ReferenceChangelogDiscussions
Log In
Discussions

Discussions

Ask a Question
Back to All

Ipdate multiple URLs at a time

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
}
}