1

I'm using ColdFusion 10 to communicate with PayPal's servers and for some requests I'd need to do HTTP PATCH requests which are not supported by CF10.

Is the PayPal REST API offering an alternate method to fake PATCH requests like appending ?_HttpMethod=PATCH to the request URI or sending a HTTP Header named X-HTTP-Method-Override with value PATCH?

Community
  • 1
  • 1
Seybsen
  • 14,989
  • 4
  • 40
  • 73
  • I'm afraid you'll have to use either Java's `HttpClient` or `curl` and build the PATCH request yourself. – Alex Nov 03 '16 at 23:32

1 Answers1

0

Setting a header named X-HTTP-Method-Override with value PATCH works with PayPal REST API.

Seybsen
  • 14,989
  • 4
  • 40
  • 73