Hello
i need help for APi
$data = array(
"data" => array(array(
'Deal_Name' => 'New Deal by kirti', // Replace with your own deal name
'Amount' => 1000, // Replace with your own deal amount
'Stage'=> "New Quote Request",
"Pipeline"=> "Sales Pipeline Standard",
'Pipeline' => array(
'id' => $pipeline_id
),
'Subform' => array(
array(
'Deal_Sub_Form' => array(
'id' => $sub_pipeline_id
)
)
),
'Owner' => array(
'id' => '803676083' // Replace with the ID of the deal owner
),
"trigger" => array(
"approval"
)
)
)
);
$headers = array(
'Authorization: Zoho-oauthtoken ' . $token,
'Content-Type: application/json',
"X-ORG-ID: $org_id",
'X-HTTP-Method-Override: POST'
);
i was request API by curl
and return response like this follow
{"data":[{"code":"SUCCESS","details":{"Modified_Time":"2023-03-01T01:39:41-05:00","Modified_By":{"name":"Mike Lafreniere","id":"5669852000000402001"},"Created_Time":"2023-03-01T01:39:41-05:00","id":"5669852000000427001","Created_By":{"name":"Mike Lafreniere","id":"5669852000000402001"}},"message":"record added","status":"success"}]}
but not show in deal page
Thanks