curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SALESFORCE_UPDATE_RECORD_TASK' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "SALESFORCE_UPDATE_RECORD_TASK",
"parameters": {
"recordId": "<string>",
"whatId": "<string>",
"whoId": "<string>",
"subject": "<string>",
"activityDate": "<string>",
"description": "<string>",
"Status": "Not Started",
"ownerId": "<string>",
"callDurationInSeconds": "<string>",
"isReminderSet": true,
"reminderDateTime": "<string>",
"additionalFields": {}
}
}
'