12-18-2017 07:27 PM
Hey good people,
I cant work out how to associate a line to a device as I do using the web interface. In the web gui under a device -> line, down the bottom you have "Users Associated with Line" How Can I set this to a users id in axl?
Im using cucm v11.5. I have tried updatePhone soap call and providing the lines property with the user id under associatedEndusers (see my php payload below). No error is thrown. I can only assume I need to make the association via a different method. Any ideas?
$lineAsocPayload = array(
"name" => $phone["name"],
"lines" => ["line" =>
[
"index" => 1,
"dirn"=> ["pattern" => $this->user->ipPhone, "routePartitionName"=>USER_ROUTE_PARTITION],
"associatedEndusers" => [
"enduser" => ["userId" => $this->user->id]
]
]
]);
$soapClient->updatePhone($lineAsocPayload);
Solved! Go to Solution.