Niels: Check the Content-Type header of the incoming request, it *should* give you an indication of how to unpack the body. The example shown in the original post (it’s really old!) shows form-style data, but you could also json_decode() the string you get from php://input or parse it as XML as appropriate. Hope that helps