Solved

Invalid value 'POST' for http method

  • 3 June 2019
  • 2 replies
  • 121 views

Userlevel 4
Badge +13
For a process flow which processes both POST and PUT api calls it is necessary to use a variable for the HTTP method. However the HTTP connector produces this error:

The process action with id 'http_connector' was provided with the invalid value 'POST' for its 'Http method' parameter.



What are the correct values for PUT and POST in case a variable is used?
icon

Best answer by Vincent Doppenberg 3 June 2019, 16:12

View original

2 replies

Userlevel 6
Badge +4
Hi Roland,

These are the available values for the HTTP method input parameter of the HTTP connector:

  • http_method_get
  • http_method_post
  • http_method_put
  • http_method_delete
  • http_method_head
  • http_method_trace
  • http_method_options
  • http_method_patch
Userlevel 4
Badge +13
Great, it works. Thank you.

Reply