Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA
Skip to end of metadata
Go to start of metadata

Creates contact. Check "data" in example bellow.

Parameters 

 

Name TypeDescription

data

required

object

dictionary with contact data

cb

optional

function

callback function


Example

this.createContact = function(data, cb){
  return _request({
    method: 'POST',
    url: '/contact/create',
    data: data,
    callback: cb
  });
};

 

Example Result

{
email: 'hello@world.net',
name : 'mr. Smith'
}

 

 

  • No labels
Write a comment…
Quatrix JavaSctipt APIs QJA