When a Webhook is triggered, is there a way to get the org_id
from which it was fired? (Aside from climbing up the triggered item)
The only solution I found so far is:
PodioItem::get($item_id);
to get the space_idPodioSpace::get($space_id);
to get the fullPodioOrganization::get_for_url($attributes = array());
I get theorg_id
.