Running into an Error on Cloud API Calls

 //    Set Headers and URL for CURL

        $url = "https://api.aspose.cloud/v3.0/imaging/convert?format=pdf";

        $headers = [
            "accept: multipart/form-data",

            "Content-Type: multipart/form-data",

            "Authorization: Bearer " . $token,
        ];

        // Get the file from Storage

        $data = [
            "File" => new \CURLFile(
                "path/to/file/" . $phone . "/" . $file
            ),
        ];

        // Set Curl Options

        $ch = curl_init();

        curl_setopt($ch, CURLOPT_URL, $url);

        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");

        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

        curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

        $response = curl_exec($ch);

       
        //Handle Error
        if (!$response) {
            Log::info('Converting Error ' . curl_error($ch));
        }

The CURL error logs as follows

Converting Error HTTP/2 stream 0 was not closed cleanly: INTERNAL_ERROR (err 2)

Kindly Guide me, as it was working flawlessly a day before, encountering this since yesterday. Plus failed to POST using Postman as well.

Sorry for inconvinience. We need some time to investigate the issue.

Sure, I will waiting for an answer on this as this has occurred again in the last 24 hours.

Hello,
the issue is fixed, please, try again

Best Regards,
Alexander

Thank you, let me test and can you brief me about what the issue was? we have to maintain backlogs of issues

Hello,
The reason of the issue was migration to new production infrastructure

Best Regards,
Alexander