*SOLVED* Why is $_REQUEST blank now?

I save what I add to my Plex to a database via a webhook page… It was working fine with

$data = json_decode($_REQUEST['payload']);

However, it returns empty - not sure when this started to happen.

Has something changed? Does it send the JSON differently these days (eg. not in $_REQUEST)? Even tried $_POST/$_GET, empty as well.

TIA

Ok, so I changed my webserver to redirect to www. if it’s not appended to the domain, therefore it redirects with a GET, and the URL I defined for the webhook didn’t have www in… I feel stupid…