Greetings,
I can\'t seem to find a way to create a function request with array as an argument. For example, how do I make this kind of request using PHP SoapClient:<
I had similar problem and I had to post data in this structure. Accepted answer didn't work for me
$data = array(
'GetResultListRequest' => array(
'Filters' => array(
array('Name' => 'string', 'Value' => 'string'),
array('Name' => 'string', 'Value' => 'string'),
)
)
);
maybe it might help somebody if accepted answear doesn't work for you