REST Patch
Reference documentation for using the REST Patch action with a REST API
Written By Support Channel
Last updated 9 months ago
Overview of the REST Patch action
The REST Patch action allows a workflow to send an HTTP PATCH request to a RESTful API endpoint to partially update a resource.
Understanding the REST Patch action
The REST Patch action is used when you need to update part of a resource rather than replacing the entire object (REST Put/REST Post). This action sends a HTTP PATCH request with a body that specifies the fields to be updated.
Headers
A list of header names and values for the API request. For example:
Content-Type: βapplication/jsonβ
Authorisation: βrest_api_key=1234β
URL
Specify the endpoint where the PATCH request should be sent.
Body
Specify the content the PATCH request will be sending.

Working with the REST Patch action
The REST Patch action is ideal for updating only specific fields of an object without overwriting the entire data record. Ensure that the API endpoint supports PATCH requests, and that your body only includes valid fields allowed for updates.
This action is particularly useful in systems where you want to avoid overwriting existing data unintentionally. For example, if you're only updating a user's status but leave out other fields like email or username, REST Patch ensures those untouched fields remain unchanged.
Output Variables
Create and manage a REST Patch action
Add a REST Patch action
Add the action
Use the following steps to add the action to your workflow.
Configure the action
Use the following steps to configure the action.
Click Add Header to create a new header entry. This reveals the Header popup.
Select Header and type the name of the header.
Select Value and input the value of the header
Click OK to complete setup of your new field value.
Repeat the above steps for any addition additional headers needed.
Set a value for the URL and Body.
Click back in the main view to hide the slide-over.
Edit the action
Use the following steps to make changes to the action.
Edit an existing Header entry by clicking on it. This displays the Edit Header popup and allows you to make changes.
Remove an unwanted entry by clicking the red cross toward its right-side.
Click back in the main view to hide the slide-over.
Delete a REST Patch action
Use the following steps to remove the action from your workflow:
Take care when deleting an action to also remove any logic using its outputs: workflow steps may function incorrectly or break if they attempt to evaluate an output of a deleted action.