Hi
Can anyone tell me what I'm doing wrong here? I'm trying to use FindByOtherReference:
$my = $client->Invoice_FindByOtherReference(array('otherReference' => '356'))->Invoice_FindByOtherReferenceResult;
print_r($my) ;
It returns an empty object each time? But if I try to do the same exercise with Debtors it works fine!
$myDebtor = $client->Debtor_FindByNumber(array('number' => 104))->Debtor_FindByNumberResult;
print_r($myDebtor) ;
I have also tried to get all invoices to control it, but it returns nothing to:
$my2 = $client->Invoice_GetAll()->Invoice_GetAllReferenceResult;
print_r($my2) ;


