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": {
"ticketId": "<string>",
"source": "1",
"status": "2",
"priority": "1",
"requesterId": "<string>",
"subject": "<string>",
"description": "<string>",
"name": "<string>",
"email": "<string>",
"phone": "<string>",
"uniqueExternalId": "<string>",
"twitterId": "<string>"
}
}'
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": {
"ticketId": "<string>",
"source": "1",
"status": "2",
"priority": "1",
"requesterId": "<string>",
"subject": "<string>",
"description": "<string>",
"name": "<string>",
"email": "<string>",
"phone": "<string>",
"uniqueExternalId": "<string>",
"twitterId": "<string>"
}
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Your Paragon Project ID
Success
Was this page helpful?