将促销代码添加到 infusionsoft
add promocode to the infusionsoft
我已经添加了这段代码,但它不起作用。我希望将促销代码保存在 infusionsoft
$carray = array(
php_xmlrpc_encode($app->key),
php_xmlrpc_encode($contactId),
php_xmlrpc_encode($creditCardId),
php_xmlrpc_encode($payPlanId),
php_xmlrpc_encode(array($productId1, $productId2)),
php_xmlrpc_encode(array($subscriptionPlanId1, $subscriptionPlanId2)),
php_xmlrpc_encode($processSpecials),
php_xmlrpc_encode(array($promoCode1, $promoCode2)) // array of strings
);
$app->methodCaller("OrderService.placeOrder", $carray);
促销代码是只读的。这意味着,虽然它们可以在订单期间使用并应用于发票,您不能通过 API.
添加新的促销代码
这是 InfusionSoft 的一个不幸限制 API。在 Table Documentation.
中阅读更多内容
我已经添加了这段代码,但它不起作用。我希望将促销代码保存在 infusionsoft
$carray = array(
php_xmlrpc_encode($app->key),
php_xmlrpc_encode($contactId),
php_xmlrpc_encode($creditCardId),
php_xmlrpc_encode($payPlanId),
php_xmlrpc_encode(array($productId1, $productId2)),
php_xmlrpc_encode(array($subscriptionPlanId1, $subscriptionPlanId2)),
php_xmlrpc_encode($processSpecials),
php_xmlrpc_encode(array($promoCode1, $promoCode2)) // array of strings
);
$app->methodCaller("OrderService.placeOrder", $carray);
促销代码是只读的。这意味着,虽然它们可以在订单期间使用并应用于发票,您不能通过 API.
添加新的促销代码这是 InfusionSoft 的一个不幸限制 API。在 Table Documentation.
中阅读更多内容