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

Updates existing contact. Check "data" example below.

Parameters

 

Name TypeDescription

cuuid

required

string

PGP key name.

data

required

uuid

key owner user ID.

cb

optional

stringpublic part of PGP key


Example

this.updateContact = function(cuuid, data, cb) {
  return _request({
    method: 'POST',
    url: '/contact/edit/' + cuuid,
    data: data,
    callback: cb
  });
};

 

Example Result

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

 

 

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.
Quatrix JavaSctipt APIs QJA