Hello sir I am integrating the V3 API with our website, I with the V3 API I received the access token successfully. But when I try to create new list using curl it give me error "{"error_key":"server_error","error_message": "Internal server error"}". Following is my code: $url = 'https://api.cc.email/v3/lists'; $ch = curl_init(); $data = array( "name" => "Multiple Countries", "favorite" => true, "description" => "List mulitple countries" ); $jsonDataEncoded = json_encode($data); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLINFO_HEADER_OUT, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST"); curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonObj); // Set HTTP Header for POST request curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'accept' => 'application/json', 'authorization' => 'Bearer '.$access_token, 'cache-control' => 'no-cache', 'content-type' => 'application/json' )); // Submit the POST request $result = curl_exec($ch); $err = curl_error($ch); // Close cURL session handle curl_close($ch); if ($err) { echo "cURL Error #:" . $err; } else { print_r($result);die(); }
... View more