Delete a Customer contact
Use this method to delete an existing Customer contact.
Valid Tokens: Company.
Related Articles
-
Order Cancellation Webhook (Knowledge Base)
-
Delete a Prebook 1.0 (API)
-
-
Getting Started (API)
-
Request
URL: https://api.kometsales.com/api/customer.contact.delete
Method: POST
Content-Type: application/JSON
Input Parameters
authenticationToken (required)(string:50)
Komet Sales security token.
contactId (required) (integer:20)
The ID of the Contact to delete.
You can get this value from the customer.contact.list API method.
{
"authenticationToken": "token_info_goes_here",
"contactId": 20131
}
Response
status (integer:1)
Transaction status.
Valid values: 1 = Success | 0 = Failure
message (string:500)
Transaction status description.
{
"status": 1,
"message": "Contact was successfully deleted."
}
Peacock