curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#MICROSOFT_DYNAMICS_UPDATE_RECORD_TASK' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "MICROSOFT_DYNAMICS_UPDATE_RECORD_TASK",
"parameters": {
"entityId": "<string>",
"subject": "<string>",
"regardingobjectid": "<string>",
"scheduledend": "<string>",
"ownerid": "<string>",
"prioritycode": "0",
"description": "<string>"
}
}
'curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#MICROSOFT_DYNAMICS_UPDATE_RECORD_TASK' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "MICROSOFT_DYNAMICS_UPDATE_RECORD_TASK",
"parameters": {
"entityId": "<string>",
"subject": "<string>",
"regardingobjectid": "<string>",
"scheduledend": "<string>",
"ownerid": "<string>",
"prioritycode": "0",
"description": "<string>"
}
}
'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
Task ID : The ID of the Task to update.
Subject : A title for the task.
Regarding : The account, contact, lead or opportunity this task is about. (example: "{{settings.opportunity}}")
Due Date/Time : Accepts Unix timestamp or ISO 8601 date formats.
Owner : Specify a user to own this task. Defaults to the currently authenticated user. (example: "{{settings.user}}")
Priority : Defaults to Normal.
0, 1, 2 Description
Success
Was this page helpful?