REST Api @ http://developers.hubspot.com/docs/methods/contacts/create_contactを使用していると仮定します
API投稿を追加できますapp/design/frontend/base/default/template/checkout/success.phtml
(管理者ではなくフロントエンドから注文した顧客の情報のみをcrmに送信します)
オブザーバーを作成することもできます
config.xml 内
<events>
<sales_order_place_after>
<observers>
<hubspot_create_customer_api>
<type>singleton</type>
<class>hubspotApi/observer</class>
<method>createCustomer</method>
</hubspot_create_customer_api>
</observers>
</sales_order_place_after>
あなたのobserver.phpで
class MageIgniter_HubspotApi_Model_Observer
{
public function createCustomer($event)
{
//$_order = $event->getOrder();
//$_order->getCustomerFirstname();
print_r($_order->getBillingAddress()); //get customer billing info
print_r($_order->getBillingAddress()->getFirstname());
//make curl call to post info to api
//see http://mydons.com/using-curl-functions-in-magento-way/
}
}
オブザーバーを使用してカスタム モジュールを作成する方法を学習するには