Routing a PUT request from Notehub

@bsatrom @RobLauer @gwolff

I have another route problem to check into. I can make POST requests without issue. But I can’t seem to perform a PUT request. This could be operator error, but I have triple checked everything. Is PUT possible from notehub? Under Route Type, I am using “General HTTP/HTTPS Request/Response”. Should there be a separate PUT option?

Hey Greg,

Currently, the “General HTTP/HTTPS Request/Response” type is POST only. I’m happy to add a feature request to support PUT requests via this or a new route type. To help us understand the need, are you routing to a location that accepts data only via PUT requests, or is this a service you mange?

Routing to a service that accepts PUT and POST requests. PUT would definitely help avoid exploding database size. Oh and without PUT, I have to create size-able workarounds.

1 Like

We ran into this as well. Some services accept a method override header:

headers: { 'X-Http-Method-Override': 'PUT' }

The header indicates which method is intended, even if it’s not the one actually used.