Google Drive API files:COPY returns 404 error

-With CURL ‘https://www.googleapis.com/drive/v3/files’ successfully works
-But at the same time ‘https://www.googleapis.com/drive/v3/files/{fileId}/copy’ throws 404 Error
-Have double checked the ‘fileId’.
-Have cleared the cache and tried but not working
-Have checked the Scope Permissions…
-The scopes are ‘https://www.googleapis.com/auth/drive https://www.googleapis.com/auth/drive.file https://www.googleapis.com/auth/drive.appdata https://www.googleapis.com/auth/drive.photos.readonly’
-The same example, If I Try on ‘Drive Explorer Try Now’, it works fine there as well
-So what’s wrong not able to figure out
$url = ‘https://www.googleapis.com/drive/v3/files/1ZYyl0MzfWy_V5Io3N0BTsF19pNiX7s23BqYPbQKplvU/copy’;

$ch = curl_init();      
curl_setopt($ch, CURLOPT_URL, $url);        
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer '. $access_token));
$data = json_decode(curl_exec($ch), true);

$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);     

if($http_code != 200) 
    throw new Exception('Error : Failed');
    
return $data;