You declared a content-type header of application/json
But your POST body is not JSON encoded.
Simplest fix
curl_setopt($CCR, CURLOPT_POSTFIELDS,$segdata);
becomes
curl_setopt($CCR, CURLOPT_POSTFIELDS, json_encode($segdata));
You declared a content-type header of application/json
But your POST body is not JSON encoded.
Simplest fix
curl_setopt($CCR, CURLOPT_POSTFIELDS,$segdata);
becomes
curl_setopt($CCR, CURLOPT_POSTFIELDS, json_encode($segdata));