How to Undo Deployed Assignments
edges = client.get_all_edges(invitation = 'Your/Venue/ID/Reviewers/-/Assignment')
for edge in edges:
edge.ddate = 1643083220000
client.post_edge(edge)note = client.get_note('<note_id>')
note.content['status'] = 'Complete'
client.post_note(note)PreviousHow to Export all Submission AttachmentsNextHow to loop through Accepted Papers and print the Authors and their Affiliations
Last updated
Was this helpful?