Changing the Expiration Date of the Submission Invitation
expdate = 1650639704000API V1
invitation = client.get_invitation("<Your/Venue/ID/-/Submission")invitation.expdate = expdateclient.post_invitation(invitation)API V2
client.post_invitation_edit(
invitations='<invitation-id>', # This is the Invitation used to create this Invitation Edit
readers=[venue_id],
writers=[venue_id],
signatures=[venue_id],
invitation=openreview.api.Invitation(
id="<Your/Venue/ID/-/Submission",
expdate=expate
signatures=[venue_id]
)
)Last updated
Was this helpful?