Sorry but i am stuck again with that..
Here is the example.
I wont to get last 75 tickets with Status Open
To do that i call GetTicketList function form TicketService
bellow is the parameters that i send
CODE
[args] => Array
(
[0] => GetTicketList
[1] => Array
(
[0] => Array
(
[PagingOptions] => Array
(
[StartRow] => 0
[NumberOfItems] => 75
)
[SortingOptions] => Array
(
[SortExpression] => OpenDate
[SortDirection] => Descending
)
[FilteringOptions] => Array
(
[FilterValue] => Open
[FilterExpression] => Status
)
)
)
)
But i cont get a empty ticket list as result set.
At the same time when i login into obit web interface i can see several open tickets.
What am i missing ?