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
Hi!
As I'm creating an API to sync payments with a bookkeeping system, I'd like to get notified about payments. That's why I need to add a callback url.
My test looks like this:
/** @test */ public function it_adds_a_callback_url() { // given $user = $this->bunq->getCurrentUser(); $callbackUrl = "https://example.org"; // when $this->bunq->addCallbackUrl($callbackUrl); // then $filters = $user->getNotificationFilters(); $this->assertTrue(count($filters) >= 1); }
($this->bunq refers to BunqLib}
$this->bunq
BunqLib
When running this test, I'm getting the error:
Error message: Superfluous field "card_ids".Superfluous field "card_limits".
But I can't find any documentation about this error. I tried removing the default null values, changing the url, but none of these work.
Could it be a sandbox thing? Or what am I missing here?
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi!
As I'm creating an API to sync payments with a bookkeeping system, I'd like to get notified about payments. That's why I need to add a callback url.
My test looks like this:
(
$this->bunq
refers toBunqLib
}When running this test, I'm getting the error:
Error message: Superfluous field "card_ids".Superfluous field "card_limits".
But I can't find any documentation about this error. I tried removing the default null values, changing the url, but none of these work.
Could it be a sandbox thing? Or what am I missing here?
Thanks!
The text was updated successfully, but these errors were encountered: