Export PDF api issue

I am trying to store the pdf url then export it as a salesforce object and am getting stuck creating the POST api call to create the pdf url. I am receiving a configuration error when trying to test the connection.

If there is a collaborative submission, do we need to pass the collab id in the request body? I’m not sure what else could be configured incorrectly following the documentation (Feathery API Reference)

Attached is a screenshot of the config - ignore the collab_id as I was just testing if that would work. Please let me know how to fix this!

For this endpoint, just use form_id and user_id in the request body as outlined in Feathery API Reference. Also, ensure the API key is correct (with no extra spaces)

I can get it to work static - I am looking to leverage the User Id from the active submission dynamically. What is the User ID stored as in Feathery?

It can be accessed using the key userId. ( Context API | Feathery Docs )
Logic usage example: newHiddenField.value = feathery.userId;
Then use newHiddenField in the API connector.