connector_request
Make secure HTTP requests to third-party platforms on behalf of a workflow. Use a connector ID from list_workflow_connectors and provide a path relative to the connector base URL.
Instructions
Make an HTTP request to a third-party platform that is allocated to a workflow, on the user's behalf. The request is brokered securely — you never see or handle any access token. Give the path RELATIVE to the connector base URL (e.g. "/repos/acme/api/issues"), not a full URL. Use list_workflow_connectors first to find a connector_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | Optional JSON body for POST/PUT/PATCH. | |
| path | Yes | Path relative to the connector base URL, starting with "/". | |
| query | No | Optional query string incl. leading "?". | |
| method | Yes | HTTP method. | |
| workflowId | Yes | The loaded workflow that carries the connector. | |
| workspaceId | No | Workspace ID. Defaults to your default workspace. | |
| connector_id | Yes | connector_id from list_workflow_connectors. |