Returns array with users and contacts.
Parameters
| Name | Type | Description |
cb required | function | callback function |
Example
this.getRecipients = function(cb) {
return _request({
method: 'GET',
url: '/is/recipients',
callback: cb
});
};
0 Comments