How to add an externalId to an accepted note
Add an externalId using the venue meta invitation
venue_id = '<your venue id>'
meta_invitation_id = f'{venue_id}/-/Edit'
note_id = '<id of the accepted submission>'
doi_id = '<DOI of the paper>'
client.post_note_edit(
invitation=meta_invitation_id,
signatures=[venue_id],
note=openreview.api.Note(
id=note_id,
external_id=f'doi:{doi_id}'
)
)Retrieve a note by externalId
Last updated
Was this helpful?