我在opportunity中有一个名为Buyer's Wish List的选项卡。
我有通过API创建的销售线索
$opportunity = array(
'OpportunityTitle' => $full_name,
'ContactID' => $newCon
);
$app->dsAdd("Lead", $opportunity);
现在如何通过API更新opportunity下Buyer's Wish List选项卡中的自定义字段?
发布于 2012-05-08 16:15:23
这是旧的,但infusionsoft最近有一个更新,允许您更新机会的自定义字段值。在lead表上使用http://help.infusionsoft.com/api-docs/dataservice#update:
http://help.infusionsoft.com/developers/tables/lead
lead表现在包含opportunity自定义字段的所有值。
https://stackoverflow.com/questions/9214164
复制