Hello, I'm trying to get the same result with the API SOAP : $result= $client->dns_a_get($session_id, array('zone' => $id, 'name' => 'www')); JSON : $result = restCall('dns_a_get', array('session_id' => $session_id, .... What to put here ? ... )); Thanks, Gody
Found... $result = restCall('dns_a_get', array('session_id' => $session_id, 'primary_id' => array('zone' => $id, 'name' => 'www') ));
thanks, nice find! OTOH, maybe it is a little counter-intuitive... or the REST interface needs a little polishing?