<div dir="ltr"><div>Hi Everyone,</div><div><br></div><div>with the pubblication of API for BO boxes I've started the integration with our CRM. They works fine and it's a great work!</div><div><br></div><div>I was testing APIs using a VM running BO 5107 and I was trying to implement some new features.</div>
<div><br></div><div>I've tried to analyze the php code but I stopped myself when I found</div><div><br></div><div>$cceClient->create</div><div><br></div><div>method. Reading CceClient.php it says</div><div><br></div>
<div>  // description: create a CCE object of type $class, with properties in $vars</div><div>  // returns: oid of created object, or 0 on failure</div><div>  // usage: $oid = $cce->create($class, array( 'property' => 'value' ));</div>
<div>  function create($class, $vars = array()) {</div><div>    return ccephp_create($this->handle, $class, $vars);</div><div>  }</div><div><br></div><div>I don't know what classes are supported so I've tried to go deeper and find the definition of ccephp_create function with no success.</div>
<div><br></div><div>Is there a way to find the definition of this function or a doc where we can find supported classes and specs about array to be passed in $vars?</div><div><br></div><div>Thanks</div></div>