Skip to content
background-image background-image

Additional HTTP methods for endpoints

Integray now supports PUT, PATCH, and DELETE methods, expanding the range of available HTTP methods for API interactions. Previously, you could only use GET and POST, which limited how you could work with external APIs. This update lets you control creating, updating, and deleting resources in connected systems.

Why?

Modern APIs rely on a variety of HTTP methods to handle different types of requests. While GET and POST cover basic data retrieval and creation, many APIs require PUT for full updates, PATCH for partial modifications, and DELETE for removing resources. Without these additional methods, users often needed workarounds to perform these actions. Integray offers a more complete and flexible API integration experience by adding PUT, PATCH, and DELETE.

How it works

When configuring an endpoint in Integray, you can now choose from five HTTP methods:

  • POST: Sends new data to an API.
  • GET: Retrieves data from an external source.
  • PUT: Replaces an entire resource with updated data.
  • PATCH: Updates specific fields within a resource.
  • DELETE: Removes a resource from the external system.

HELP_Endpoints_NEW_HTTPS_Methods

This update ensures that Integray aligns with modern API standards and supports a wider range of integration scenarios.

Getting started

To use the new HTTP methods, navigate to the Endpoints, select GET, POST, PUT, PATCH, or DELETE, and define your request details.