← View all announcements
New release
New release
New release
May 2, 2023

Added the HTTP Patch action

Have you bumped into a REST API where updating entities partially is only possible by using HTTP Patch requests?

Now you're covered, because we've added the HTTP Patch action to Cloudhooks.

A quick example on how to use the HTTP Patch action:

const { data } = await actions.http.patch('http://my.api.com/things/1', { a: 1 })
console.log('partially updated a thing with { a: 1 }')

For more information, please refer to the HTTP Patch action in the documentation.