Remote Control API - Example in description doesn't work

I’ve followed this guide step by step: https://docs.unrealengine.com/en-US/…art/index.html However, I end up getting a return code as:

{“errorCode”: “errors.com.epicgames.httpserver.route_handler_not_found”, “errorMessage”: “”}

Obviously the **errormessage **is not very helpful and I don’t get any log output in Unreal.

Any Ideas? Used both Postman and Python Requests just to make sure I’m not feeding a bad character, but no luck.

Are you passing the payload as data or as json? You should be using json, passing as data will give you the error you mentioned. So use something like this:

response = requests.put(url, json={“wow”: “data”})

FYI. Here is the snapshot of my postman which works fine.
David