Hi,
I'm using the SOAP API (http://manuals.matrix.squizsuite.net/web-services/chapters/soap-api-search-service)
How do I pass more than one value for a parameter in PHP when using the SOAP API? For example the Basic Search SOAP API can take multiple values for Statuses. I'm using
$basicSearch = Array (
...
'Limit' => '100000'
'Statuses' => '4',
'Statuses' => '8',
'Statuses' => '16',
'RootIDs' => '3232',
...
);
but it will only pass
...<Limit>100000</Limit><Statuses>16</Statuses><RootIDs>3232</RootIDs>...
It seems to only take the last value I have passed for Statuses.
I also tried passing the values in an array like
'Statuses' => Array('4','8','16') but not good either.
Anyone know how to do this? Thanks.