arrow-left

All pages
gitbookPowered by GitBook
1 of 2

Loading...

Loading...

Invitations

Changing the expiration date of the Submission Invitation

Changing the Expiration Date of the Submission Invitation

The submission deadline set through the venue request form is actually only the advertised due date. The true deadline is the expiration date, which is set to 30 minutes after the submission deadline. If you would like to change the expiration date to allow the authors more or less wiggle room around the submission deadline, you can do so using the python client.

  1. If you have not done so, you will need to install and instantiate the openreview-py client.

  2. Choose your desired expiration date. You will need to convert it into epoch time in milliseconds using an epoch time converter.arrow-up-right For example:

Depending on the API version that your venue is using, you will need to update the expdate value differently.

hashtag
API V1

  1. Retrieve your invitation:

  1. Set the expiration date, or expdate.

  1. Post your changes.

hashtag
API V2

  1. Create an Invitation Edit

circle-info

Depending on the Invitation used to create the Invitation Edit, some other fields may be required. To read more about how Invitations work, refer to the .

expdate = 1650639704000
Invitations section
invitation = client.get_invitation("<Your/Venue/ID/-/Submission")
invitation.expdate = expdate
client.post_invitation(invitation)
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]
    )
)