Customer Relationship Management API
Add and manage your contacts from our dashboard and add your new contacts programmatically with our API
Add contact
Type can be Prospect
, Customer
, Supplier
, Partner
and Other
. Source is for you to differentiate where the contact is coming from.
REQUEST
POST
/crm/add/
{
"authentication": {
"partnerId": "your-partner-id",
"signature": "your-signature",
"ip":"123.456.78.912"
},
"contact":{
"type":"Customer",
"source":"website",
"firstName":"John",
"lastName":"Doe",
"email":"john.doe@gmail.com"
}
}
RESPONSE
SUCCESS
{
"status": "success",
"message": "Contact was added successfully"
}
RESPONSE
ERROR
{
"status": "error",
"message": "Type and email can't be empty."
}