curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#MICROSOFT_DYNAMICS_CREATE_RECORD_CALL' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "MICROSOFT_DYNAMICS_CREATE_RECORD_CALL",
"parameters": {
"subject": "<string>",
"to": "<string>",
"from": "<string>",
"directioncode": "1",
"regardingobjectid": "<string>",
"phonenumber": "<string>",
"actualdurationminutes": "<string>",
"description": "<string>",
"scheduledend": "<string>",
"prioritycode": "0"
}
}
'curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#MICROSOFT_DYNAMICS_CREATE_RECORD_CALL' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "MICROSOFT_DYNAMICS_CREATE_RECORD_CALL",
"parameters": {
"subject": "<string>",
"to": "<string>",
"from": "<string>",
"directioncode": "1",
"regardingobjectid": "<string>",
"phonenumber": "<string>",
"actualdurationminutes": "<string>",
"description": "<string>",
"scheduledend": "<string>",
"prioritycode": "0"
}
}
'Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Subject : A description of the objective or topic of the call.
To : The account, contact, lead, or user this call is to. Use Connect Portal User Settings to allow users to specify a record. (example: "{{settings.lead}}")
From : The account, contact, lead, or user this call is from. Defaults to the currently authenticated user.
Direction : Defaults to Outgoing.
1, 0 Regarding : The account, contact, lead or opportunity this call is about. (example: "{{settings.opportunity}}")
Phone Number
Duration : Specify duration in minutes. Defaults to 30 minutes.
Description
Due Date/Time : Accepts Unix timestamp or ISO 8601 date formats.
Priority : Defaults to Normal.
0, 1, 2 Success
Was this page helpful?