We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
at the current State the getOrders Function is not usable here's a quick example:
$user = '<USER>'; $apiPassword = '<PASSWORD>'; $apiKey = '<API_KEY>'; $client = new \BillbeeDe\BillbeeAPI\Client($user, $apiPassword, $apiKey); $orders = $client->orders()->getOrders(); var_dump($orders);
and the Results are:
object(BillbeeDe\BillbeeAPI\Response\GetOrdersResponse)#96 (4) { ["data"]=> array(0) { } ["paging"]=> NULL ["errorMessage"]=> NULL ["errorCode"]=> int(0) }
Same Request with Postman and same Credentials:
a deeper look into the Code shows that the data is being retrieved but is not mapped correctly into the OrderResponse interface. Used PHP Version 8.0
The text was updated successfully, but these errors were encountered:
maybe the samem problem with composer configuration, see #78
Sorry, something went wrong.
No branches or pull requests
at the current State the getOrders Function is not usable here's a quick example:
Code
and the Results are:
Results
object(BillbeeDe\BillbeeAPI\Response\GetOrdersResponse)#96 (4) { ["data"]=> array(0) { } ["paging"]=> NULL ["errorMessage"]=> NULL ["errorCode"]=> int(0) }
Same Request with Postman and same Credentials:
Postman
Technical View
a deeper look into the Code shows that the data is being retrieved but is not mapped correctly into the OrderResponse interface. Used PHP Version 8.0
The text was updated successfully, but these errors were encountered: