Returns metadata for specified contact.
Parameters
| Name | Type | Description |
uuidrequired | string | contact uuid |
cb optional | function | callback function |
Example
this.getContactMetadata = function(uuid, cb){
return _request({
method: 'GET',
url: '/contact/metadata/'+ uuid,
callback: cb
});
};
0 Comments