curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#PIPEDRIVE_UPDATE_RECORD_DEALS_V2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "PIPEDRIVE_UPDATE_RECORD_DEALS_V2",
"parameters": {
"recordId": "<string>",
"title": "<string>",
"value": "<string>",
"status": "open",
"expectedCloseDate": "<string>",
"ownerId": "<string>",
"personId": "<string>",
"organizationId": "<string>",
"pipelineId": "<string>",
"stageId": "<string>",
"additionalFields": {}
}
}
'curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#PIPEDRIVE_UPDATE_RECORD_DEALS_V2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "PIPEDRIVE_UPDATE_RECORD_DEALS_V2",
"parameters": {
"recordId": "<string>",
"title": "<string>",
"value": "<string>",
"status": "open",
"expectedCloseDate": "<string>",
"ownerId": "<string>",
"personId": "<string>",
"organizationId": "<string>",
"pipelineId": "<string>",
"stageId": "<string>",
"additionalFields": {}
}
}
'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
Record ID : The ID of the deal that will be updated.
Title
Value
Status : Defaults to Open if left blank.
open, won, lost, deleted Expected Close Date : Accepts Unix timestamp or ISO8601 date formats.
Owner ID : The ID of the user who the deal will be assigned to.
Person ID : The ID of the person who the deal will be assigned to.
Organization ID : The ID of an organization which this deal will be linked to.
Pipeline ID : Use Connect Portal Workflow Settings to allow users to select which pipeline the deal will be added to.
Stage ID : Use Connect Portal Workflow Settings to allow users to select which stage the deal will be added to. A pipeline will be assigned automatically based on the Stage ID.
Additional Fields : Specify any other fields that should be updated in JSON below. Use Connect Portal Workflow Settings to allow users to select which deal fields to update. (example: "{ "property_number": "17", "property_dropdown": "choice_b", "property_radio": "option_1", "property_string": "value", "property_date": "1572480000000" }")
Success
Was this page helpful?