I'm trying to post the following raw data to mailgun using postman, My eventual intended use is to build the request into a freshdesk webhook which will POST raw JSON to a callback URL.
I've set postman to POST the following raw JSON
{
"from":"jwills@savills.co.uk"
"to":"jwills@savills.co.uk"
"subject":"test"
"text":"working?"
}
Im receiving the response:
{
"message": "'from' parameter is missing"
}
I'd love to know how I'm formatting the code incorrectly? Thanks