diff --git a/docassemble/EFSPIntegration/py_efsp_client.py b/docassemble/EFSPIntegration/py_efsp_client.py index 0ea1105..917bfa7 100644 --- a/docassemble/EFSPIntegration/py_efsp_client.py +++ b/docassemble/EFSPIntegration/py_efsp_client.py @@ -699,10 +699,17 @@ def get_public_list(self): return self._send(Request("GET", url)) def get_courts( - self, fileable_only: bool = False, with_names: bool = False + self, + fileable_only: bool = False, + fileable_type: str = "", + with_names: bool = False, ) -> ApiResponse: """Gets the list of courts.""" - params = {"fileable_only": fileable_only, "with_names": with_names} + params = { + "fileable_only": fileable_only, + "fileable_type": fileable_type, + "with_names": with_names, + } req = Request("GET", self.full_url("codes/courts"), params=params) return self._send(req)