I wrote an API that takes a WooCommerce webhook and inputs the data into our CRM. I'm using:
file_get_contents("php://input");
The whole script is in one file because it's so simple.
My question is what happens if php://input receives two or more webhooks at the same time. Would it operate like a queue or could one be potentially dropped?
Reason I ask is we have multiple WC stores and I'm not sure if I need to clone the script for each store or if they could all feed into the same script.
Thanks for the help!