I'm calling the RequestInquiry endpoint in the sandbox, the call seems successful but when I get the BunqmeShareUrl it provided a non-working link. Is that because of the sandbox, or is there something wrong here?
Code snippet:
$id= RequestInquiry::create(
new Amount($amount, 'EUR'),
new Pointer('EMAIL', '<email>'),
$description,
true,
$monetaryAccount->getId()
)->getValue();
$r = RequestInquiry::get($id);
echo $r->getValue()->getBunqmeShareUrl();
Results in the following non-functional url: https://bunqme.triage.bunq.net/t/3kUvJL0RWmlAXC4DzLG2Gf
Any suggestions are welcome!