Help with Schedule Segment Creation (PHP)

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));
1 Like