Prefect-Databricks Malformed Json

Hi all,
I’m trying to utilize the provided databricks subflow jobs_runs_submit_and_wait_for_completion and I get this malformed request error:
httpx.HTTPStatusError: The request was malformed. See JSON response for error details.JSON response: {'error_code': 'MALFORMED_REQUEST', 'message': "Could not parse request object: Expected Scalar value for String field 'value'\n at [Source: (ByteArrayInputStream); line: 1, column: 2197]\n at [Source: java.io.ByteArrayInputStream@1c6be765; line: 1, column: 2197]"}
Fun fact: I have no field named ‘value’ in my response.

However, when I just use the submit jobs task (with the exact same JSON request), I am able to send my request without any issues and see the job triggered in my Databricks instance.

I’ve also tried a hacky version of using the code within jobs_runs_submit_and_wait_for_completion directly in my flow but I am faced with the same error. I do need a way to wait for my Databricks job to finish before continuing my flow. How can I accomplish this without using the provided flows?

Thanks in advanced.