https://docs.basemachina.com/view/form/view_form/ The arguments for the onHandleSubmit function described in this document differ from the actual behavior. const handleSubmit = (values) => { executeAction ({ id: values.id, email: values.email, registered_at_from: values.registered_at_from, registered_at_to: values.registered_at_to, }); }; In the documentation, values are accessed with values.id , but in reality, values can be accessed with values.values.id .