How would i populate an Opportunity custom field? using iSDK
everytime i try to add one, it populates the Contact custom field and not the one on opportunities
the name of my custom field in opportunity is message_form
, database is messageform
here is my relevant code
$oppor = array(
'Email'=>'greatest@mail.com',
'_messageform'=>'lorem ipsum dolo'
);
//action ID is set to add opportunity
$actionId = 224;
$newCon = $app->addCon($oppor);
//run an action set on the contact
$stat = $app->runAS($newCon, $actionId);