curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#PARDOT_CREATE_OR_UPDATE_PROSPECT' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "PARDOT_CREATE_OR_UPDATE_PROSPECT",
"parameters": {
"prospectId": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"company": "<string>",
"jobTitle": "<string>",
"phone": "<string>",
"website": "<string>",
"additionalFields": {}
}
}'
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#PARDOT_CREATE_OR_UPDATE_PROSPECT' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "PARDOT_CREATE_OR_UPDATE_PROSPECT",
"parameters": {
"prospectId": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"company": "<string>",
"jobTitle": "<string>",
"phone": "<string>",
"website": "<string>",
"additionalFields": {}
}
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Your Paragon Project ID
Success
Was this page helpful?