How to add a record in under a specific Targets Lists record

I want to add a Targets in Targets Lists module specific records 
i mean i have a Targets Lists name *abc* under that Targets List I wwant to add a targets vai rest api.
I am able to add Targets but do not know how to add it under targets list.

any help would be really appreciable.

$set_entry_parameters = array(
   "session" => $session_id,
    "module_name" => "ProspectLists", 
   "link_field_name" => "Prospects",
   "name_value_list" => array(
          array("name" => "last_name", "value" => $name ),
         array("name" => "phone_mobile", "value" => $phn),
          array("name" => "email1", "value" => $email),
         array("name" => "description", "value" => $targets_source_description),
     ),
);
$set_entry_result = $mcrm->call("set_entry", $set_entry_parameters);
print_r($set_entry_result);

Thanks