How can you use POSTman for these request that include - --data-urlencode '[email protected]'

I have an integration that I want to make from Expensify to Mavenlink. I have cURL working but wanted to test via POSTman, since there is a setting at the end of this that includes a file, how can this be accomplished without form-data since urlencode doesn't offer a file option. Any java samples to do this?
--data-urlencode '[email protected]'
curl -X POST 'https://integrations.expensify.com/Integration-Server/ExpensifyIntegrations' \
-H 'Expect: ' \
-d 'requestJobDescription={
"type":"file",
"credentials":{
"partnerUserID":"REPLACE",
"partnerUserSecret":"REPLACE"
},
"onReceive":{
"immediateResponse":["returnRandomFileName"]
},
"inputSettings":{
"type":"combinedReportData",
"reportState":"APPROVED,REIMBURSED",
"filters":{
"startDate":"2013-01-01",
"endDate":"2017-10-19",
}
},
"outputSettings":{
"fileExtension":"xlsx",
"fileBasename":"myExport"
}, "onFinish":[ {"actionName":"email","recipients":"[email protected]", "message":"Report is ready."} ] }' \ --data-urlencode '[email protected]'
Answers
-
Sorry, I'm not much help, but I went out and took a look at Mavenlink. It looks like a pretty impressive system for project management. Thanks for working on more integrations!
-
I figured out a way to do this via URLEncode.
-
Hi Jeromy
Did you find any solution ??
We are also stuck in this situation
-
I'm having the same trouble.
-
I used the following URL to encode the template.
/*Used this URL for Encode of the template file http://url-encode.online-domain-tools.com/ */