API sync before contact

Another method for syncing your base is the API sync. For this there are two important methods to implement:

Create a new customer

POST https://account.omnidesk.com/api/v2/customer

Request Body

{    "type": "result",    "message": "User created and channel linked."}

Update customer

PUT https://account.omnidesk.com/api/v2/customer/updateCustomer

The customer information fields you provide (e.g. lastname, firstname) are optional. If you do not provide a field in your request it will not get updated.

Request Body

{"type": "result",    "message": "Customer updated."}

Add channel address

POST https://account.omnidesk.com/api/v2/customer/addchannelonly

Request Body

{    "type": "result",    "message": "Channel added to the customer."}

Purge data from customer

DELETE https://account.omnidesk.com/api/v2/customer/purgedata

Purges all data linked to this customer.

Request Body

Last updated