curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#FRESHDESK_CREATE_TICKET' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "FRESHDESK_CREATE_TICKET",
"parameters": {
"source": "1",
"status": "2",
"priority": "1",
"subject": "<string>",
"description": "<string>",
"requesterId": "<string>",
"name": "<string>",
"email": "<string>",
"phone": "<string>",
"uniqueExternalId": "<string>",
"twitterId": "<string>"
}
}
'