Skip to content

ExecuteOptions

Options accepted by execute.

Extends

Properties

Property Type Description
body? unknown Body to send for POST/PUT/PATCH. Serialized as JSON.
folderId? number Numeric folder ID.
folderKey? string Folder key (GUID-formatted string).
folderPath? string Slash-delimited folder path, e.g. 'Shared/Finance'.
queryParams? Record<string, string> Query string parameters.
retry? RetryOptions Retry and backoff behavior for this call. Retrying is off unless maxRetries is set. Only the idempotent methods of RFC 9110 (GET, HEAD, PUT, DELETE, OPTIONS) are retried by default — a replayed POST can create the same record twice through the connector. To retry a POST or PATCH, list it explicitly in retryMethods.
signal? AbortSignal Signal for cancelling the request, including any pending retry.
timeoutMs? number Timeout for a single attempt, in milliseconds. Applies whether or not retrying is enabled; each retry starts a fresh timeout. Unbounded by default.