Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Returns PGP key for specified contact.

Parameters 

 

Name TypeDescription

uuid

required

string

contact uuid

cb

optional

function

callback function


Example

 

Code Block
languagejs
this.requestContactKey = function(uuid, cb) {
  return _request({
    method: 'GET',
    url: '/contact/request/'+ uuid,
    callback: cb
  });
};

 

 

Quatrix JavaSctipt APIs QJA