curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#PIPEDRIVE_CREATE_RECORD_ACTIVITIES_V2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "PIPEDRIVE_CREATE_RECORD_ACTIVITIES_V2",
"parameters": {
"subject": "<string>",
"note": "<string>",
"type": "call",
"dueDate": "<string>",
"location": "<string>",
"done": true,
"userId": "<string>",
"dealId": "<string>",
"leadId": "<string>",
"ownerId": "<string>",
"personId": "<string>",
"organizationId": "<string>"
}
}
'curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#PIPEDRIVE_CREATE_RECORD_ACTIVITIES_V2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "PIPEDRIVE_CREATE_RECORD_ACTIVITIES_V2",
"parameters": {
"subject": "<string>",
"note": "<string>",
"type": "call",
"dueDate": "<string>",
"location": "<string>",
"done": true,
"userId": "<string>",
"dealId": "<string>",
"leadId": "<string>",
"ownerId": "<string>",
"personId": "<string>",
"organizationId": "<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
Subject
Note
Type : Defaults to Call if left blank.
call, meeting, task, deadline, email, lunch Due Date : Accepts Unix timestamp or ISO8601 date formats.
Location : The address of the activity.
Done
User ID : The ID of the user whom the activity is assigned to. Defaults to the currently authenticated user if left blank.
Deal ID : The ID of the deal this activity is associated with.
Lead ID : The ID of the Lead this activity is associated with.
Owner ID : The ID of the user who the deal will be the owner of the lead. Defaults to the currently authenticated user if left blank.
Person ID : The ID of the Person this activity is associated with.
Organization ID : The ID of the Organization this activity is associated with.
Success
Was this page helpful?