Open
Description
Hi,
I'm trying using the API (PHP) to create a new Deal when someone makes a purchase on my WooCommerce site.
I've got this working nicely, but I'd like to assign a product to the Deal at the same time. I can't see any documentation showing how this is done.
Is this possible and if so, how would I go about doing it?
This is the code I'm currently using to create the deal:
$opportunity_json = array(
"name" => $deal['name'],
"expected_value" => $order_meta['_order_total'][0],
"milestone" => "Open",
/*"custom_data"=> array(
array(
"name" => "dataone",
"value" => "xyz"
),
array(
"name" => "datatwo",
"value" => "abc"
)
),*/
//"probability" => 50,
//"close_date" => 1414317504,
"contact_ids" => array($contact['id'])
);
$opportunity_json = json_encode($opportunity_json);
curl_wrap("opportunity", $opportunity_json, "POST", "application/json");
Thanks,
Ben
Metadata
Metadata
Assignees
Labels
No labels