How to remove the Abstract Registration Deadline

When filling out the venue request form, some PCs include an Abstract Registration Deadline in their request. After the venue is deployed, they want to remove this deadline due to a change in their workflow. Unfortunately, removing this deadline is not as simple as deleting the date from the form.

To remove the deadline:

  1. Get the id of your request form, this is located in the URL.

URL of the request form containing the request form id.
  1. Run the code below.

request_form_id = ''

references = client.get_all_references(referent=request_form_id)
for ref in references:
    if 'abstract_registration_deadline' in ref.content:
        print("deadline removed from: ",ref.id)
        del ref.content['abstract_registration_deadline']
        client.post_note(ref)

Last updated

Was this helpful?