API to push in Leads with Team information

Hi all,

I have problem to push data in Leads with Teams information.
Success push to leads but Team still default information.

$set_entry_parameters = array(
//session id
“session” => $session_id,

     //The name of the module from which to retrieve records.
     "module_name" => "Leads",

     //Record attributes
     "name_value_list" => array(
          //to update a record, you will nee to pass in a record id as commented below
          //array("name" => "id", "value" => "9b170af9-3080-e22b-fbc1-4fea74def88f"),
          array("name" => "name", "value" => "Test Account Papayas"),
          array("name" => "team_name", "value" => 
            array("name" => "id", "value" => "905aa14d-d3a6-b624-dd24-5a8010bc7054"),
            array("name" => "id", "value" => "e86171ae-a6d1-4341-d4cd-5a8010ad7de4"),
        ),
     ),
);

$set_entry_result = call("set_entry", $set_entry_parameters, $url);

Anybody can give suggest on my issue ?

Thank you very much