Sends a DELETE request to the specified integration endpoint.
The integration to send the request to.
The API endpoint to call.
Optional
body: RequestBodyTypeOptional request body to send.
Optional
options: ApiOptionsOptional API request options (headers, query params, etc).
A promise resolving to the HTTP response.
Sends a GET request to the specified integration endpoint.
The integration to send the request to.
The API endpoint to call.
Optional
options: ApiOptionsOptional API request options (headers, query params, etc).
A promise resolving to the HTTP response.
Sends a PATCH request to the specified integration endpoint.
The integration to send the request to.
The API endpoint to call.
Optional
body: RequestBodyTypeOptional request body to send.
Optional
options: ApiOptionsOptional API request options (headers, query params, etc).
A promise resolving to the HTTP response.
Sends a POST request to the specified integration endpoint.
The integration to send the request to.
The API endpoint to call.
Optional
body: RequestBodyTypeOptional request body to send.
Optional
options: ApiOptionsOptional API request options (headers, query params, etc).
A promise resolving to the HTTP response.
Sends a PUT request to the specified integration endpoint.
The integration to send the request to.
The API endpoint to call.
Optional
body: RequestBodyTypeOptional request body to send.
Optional
options: ApiOptionsOptional API request options (headers, query params, etc).
A promise resolving to the HTTP response.
Performs an HTTP API request to the given integration ID and endpoint ID. The provided options will be merged with the default options. In case of error (status code >= 400 or other error), the promise will be rejected with an RpcError.
Optional
body: RequestBodyTypeOptional
options: ApiOptionsOptional
method: HttpMethod
ApiClient facilitates making HTTP API requests to external integrations, supporting various HTTP methods such as GET, POST, PUT, PATCH, and DELETE.