I'm trying to make a HTTP POST request using C# and this is all I know:
I have a template that is just plain text. They recommend storing it in a separate file, which makes it easier to pass to the request. and here is an example, if the template is in a file called expensify_template.txt
this should be the call:
curl -X POST 'https://integrations.expensify.com/Integration-Server/ExpensifyIntegrations' \
-d 'requestJobDescription={....}' \
--data-urlencode 'template@expensify_template.txt'
and I have to make a code to send that request through c# using Visual Studio