是否有 API 调用来获取机会状态/舞台名称枚举的所有可能值?
问问题
1404 次
1 回答
4
这是通过 REST 完成的代码,它也应该几乎直接转换为 SOAP。
$parameters = array(
'session' => $sessionId,
'module_name' => 'Opportunities',
);
$json = json_encode($parameters);
$postArgs = array(
'method' => 'get_module_fields',
'input_type' => 'JSON',
'response_type' => 'JSON',
'rest_data' => $json
);
curl_setopt($curl, CURLOPT_POSTFIELDS, $postArgs);
// Make the REST call, returning the result
$response = curl_exec($curl);
if (!$response) {
die("Connection Failure.\n");
}
// Convert the result from JSON format to a PHP array
$result = json_decode($response);
if ( !is_object($result) ) {
die("Error handling result.\n");
}
if ( !isset($result->module_name) ) {
die("Error: {$result->name} - {$result->description}\n.");
}
var_dump($result->module_fields->sales_stage->options);
exit;
于 2012-11-15T16:07:41.210 回答