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

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Sends generated request-files link to specified user. Check "data" example below.

Parameters 

 

Name TypeDescription
idstring

specified user/contact id

dataobject

metadata for request-files page


 

Example

 

this.sendRequest = function(id, data, cb) {
  return _request({
    method: 'POST',
    url: '/is/send_request/'+id,
    data: data,
    callback: cb
  });
};



Example Result

{
 message: "some message"
}

 

 

  • No labels
Quatrix JavaSctipt APIs QJA