Finally it funcionned with this code:
await gapi.client.classroom.courses.courseWork.list({courseId: idcourse }).then(function(data){
var courseWorks = data.result.courseWork;
}
The response "data" show results into "result", that it contain a array witdh all taks in the course witdh id "idcourse".
Thanks you!