curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SERVICENOW_CREATE_TICKET' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "SERVICENOW_CREATE_TICKET",
"parameters": {
"ticketType": "incident",
"description": "<string>",
"name": "<string>",
"shortDescription": "<string>",
"status": "<string>",
"relatedPartyId": "<string>",
"referredType": "customer",
"channelName": "<string>",
"note": {}
}
}'
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SERVICENOW_CREATE_TICKET' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "SERVICENOW_CREATE_TICKET",
"parameters": {
"ticketType": "incident",
"description": "<string>",
"name": "<string>",
"shortDescription": "<string>",
"status": "<string>",
"relatedPartyId": "<string>",
"referredType": "customer",
"channelName": "<string>",
"note": {}
}
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Your Paragon Project ID
Success
Was this page helpful?