Closed c1am closed 1 year ago
Hello @c1am Do you have logs in your dashboard for the same period ?
Here is my example
I have logs
And after request with the code from library
$queryString = array(
'limit' => 100,
'pretty' => 'yes',
'event' => 'accepted'
);
# Issue the call to the client.
$result = $mgClient->events()->get($domain, $queryString);
I got my results
Also want to mention that I do no have a header of Accept
And my url looks next /v3/my-domain/events?limit=100&pretty=yes&event=accepted
@c1am Hello. Do you have any updates ?
Close the issue due to inactivity
Hello @oleksandr-mykhailenko, I've found out the solution was changing 'recipients' for stored events to 'recipient' for accepted events.
With PHP, I'm able to get stored events using the params below flawlessly. I try to change the 'event' => 'stored' to 'event' => 'accepted' but it doesn't seem to work and I'm wondering if anyone might know if there's something else in the code I need to change?
Thank you in advance!