Hi...this is my first time posting to this forum. Thanks to anyone able to offer any solutions. I've been stumped on this error within my canvas app for quite a while now when I click the Submit New User button. I couldn't find much info on it, so I guess it's a pretty obscure problem.

Onselect of the button, I have the formula entered:
ClearCollect(UserInsert,UserCollection);
Patch(UserInsert,Defaults(UserInsert),
{Company Name:'Company Input'.Text,Department:'Department Input'.Text,Email:'Email Input'.Text});
ClearCollect(UserSuccess,Azure_AD_Guest_Users_SFConnect.InsertUserData({schema:"xxxxx",table:"xxxxx",'Content-Type':"application/json",Accept:"application/json",body:UserSuccess}))
I'm trying to call a custom API/connector (Azure_AD_Guest_Users_SFConnect.InsertUserData) from my app that uses an Azure Function I built that's supposed to insert data into a snowflake DB. I've already built the custom connector according to an article I found explaining how all of this done. Find it here.
And here's the request definition that I created for the custom connector (I can provide more detail here if needed).

Fairly new to Power Platform, so any advice on this error is much appreciated. Please let me know if there's any additional information/files I can provide to help bring out a solution. Thanks!