PHP Reply to Ticket (as client) Hello, I am building a full integration of Freshdesk into a custom CRM I have built. I have managed to integrate various APIs but I am struggling with the “Reply as Customer” part. Here is my code: $body = $_POST['description']; $requester_id = intval($_POST['requester_id']); $post = json_encode(array( 'body' => $body, 'user_id' => $requester_id )); $api_key = getenv("FRESHDESK_API"); $password = "x"; $yourdomain = getenv("FRESHDESK_DOMAIN"); $url = "https://".$yourdomain.".freshdesk.com/api/v2/tickets/".$id."/notes"; $ch = curl_init($url); $header[] = "Content-type: application/json"; curl_setopt($ch, CURLOPT_HTTPHEADER, $header); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_USERPWD, "$api_key:$password"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); $response = curl_exec($ch); $decode = json_decode($response); print_r($response); curl_close($ch); The Requester ID is the same as the person who has created the initial