curl(url, {
MULTIPART: [
{name: 'file1', file: 'path/to/img.png', type: 'image/png'},
{name: 'sumbit', contents: 'send'}
]
}, function(e) {
log.info(this.body);
res.json(this.body);
});