How do I add extra parameters to api calls.
For example for Person
fc.person.email('dreadjr@gmail.com', 'queue', 'webhookUrl', 'webhookId', function(err, data) {
});
But i can't pass any extra arguments, like style or css, etc. Maybe just moving to a
var options = {
email: '123',
emailMD5: '',
etc...
};
fc.person.email(options)