Issue when creating a Project with a specific Template

Issue when creating a Project with a specific Template

I have been using this api in php to create Projects using templates that have already been made. However when I try to create a project with a certain template, I get a 204 response and the project is not created. I am able to use this template in Postman and I am able to use other templates in php, just not this specific one. This is the most complex template with about 20 tasks and many blocking tasks. Is the process simply timing out? Please help. 

      $params = [
            'name' => 'TEST Project'
            'description' => 'Test Project'
            'start_date' => date('m-d-Y'),
            'owner' => USER_ID, 
            'template_id' => TEMPLATE_ID, 
            'group_id' => GROUP_ID,
      ];  

       $headers[] = "Authorization: "$tokenType . " " . $accessToken;

        $projectsCurl = curl_init();
        curl_setopt($projectsCurl, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($projectsCurl, CURLOPT_URL, $requestUrl);
        curl_setopt($projectsCurl, CURLOPT_HTTPHEADER, $headers);
        curl_setopt($projectsCurl, CURLOPT_POST, true);
        curl_setopt($projectsCurl, CURLOPT_POSTFIELDS, http_build_query($params));
        curl_setopt($projectsCurl, CURLOPT_CONNECTTIMEOUT, 0); 
        curl_setopt($projectsCurl, CURLOPT_TIMEOUT, 60); //timeout in seconds
        $response = curl_exec($projectsCurl);
        $response_info = curl_getinfo($projectsCurl);

    Access your files securely from anywhere

        Zoho Developer Community




                                  Zoho Desk Resources

                                  • Desk Community Learning Series


                                  • Digest


                                  • Functions


                                  • Meetups


                                  • Kbase


                                  • Resources


                                  • Glossary


                                  • Desk Marketplace


                                  • MVP Corner


                                  • Word of the Day



                                      Zoho Marketing Automation


                                              Manage your brands on social media



                                                    Zoho TeamInbox Resources

                                                      Zoho DataPrep Resources



                                                        Zoho CRM Plus Resources

                                                          Zoho Books Resources


                                                            Zoho Subscriptions Resources

                                                              Zoho Projects Resources


                                                                Zoho Sprints Resources


                                                                  Qntrl Resources


                                                                    Zoho Creator Resources



                                                                        Zoho Campaigns Resources


                                                                          Zoho CRM Resources

                                                                          • CRM Community Learning Series

                                                                            CRM Community Learning Series


                                                                          • Kaizen

                                                                            Kaizen

                                                                          • Functions

                                                                            Functions

                                                                          • Meetups

                                                                            Meetups

                                                                          • Kbase

                                                                            Kbase

                                                                          • Resources

                                                                            Resources

                                                                          • Digest

                                                                            Digest

                                                                          • CRM Marketplace

                                                                            CRM Marketplace

                                                                          • MVP Corner

                                                                            MVP Corner





                                                                              Design. Discuss. Deliver.

                                                                              Create visually engaging stories with Zoho Show.

                                                                              Get Started Now