dotPush is a unified API to push data to CRMs.
Please make a HTTP POST request to - https://dotpush-demo.vercel.app/api/push
Please set the following HTTP headers -
X-ProjectId : You can grab this from the Settings page
X-ApiKey: You can get this too from the Settings page
X-ConsumerUID: The unique identifier that you use for your end users
{
"contact": {
"id": "string", // if id is given, the contact will be updated
"firstName": "string",
"lastName": "string",
"jobTitle": "string",
"email": "string",
"phone": "string",
// company automatically gets linked to the contact
"company": {
"id": "string", // if id is given, the company will be updated
"name": "string",
"description": "string",
"address": "string",
"website": "string",
}
}
}