ReferenceAsk
Remy Reference/agent/runFromConnectorRegistry
?

runFromConnectorRegistry

Run a raw API connector to a third-party service
mindstudio.runFromConnectorRegistry({ actionId, displayName, icon, configurationValues }) Result

Executes a raw API call defined in the connector registry against a third-party service, using the connector's configured base URL, auth, and request shape. Returns the response from the remote service as-is, without additional parsing or transformation. Use this when you need direct access to an external API rather than a higher-level, Remy-wrapped integration.

Parameters
actionId
string
RequiredThe connector action identifier in the format serviceId/actionId
displayName
string
RequiredHuman-readable name of the connector action
icon
string
RequiredIcon URL for the connector
configurationValues
object
RequiredKey-value configuration parameters for the connector action
__connectionId
string
OAuth connection ID used to authenticate the connector request
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.runFromConnectorRegistry({
  actionId: /* ... */,
  displayName: /* ... */,
  icon: /* ... */,
  configurationValues: /* ... */
});