List connector operations available to actions
Returns the registry of connector operations an action can call, with the input fields each one takes. Requires the `actions:read` permission in the workspace.
Authorization
apiKey Workspace API key created in Workspace settings → API keys. Scopes on the key bound what it can read and write.
In: header
Path Parameters
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/v1/workspaces/string/connector-operations"{ "data": [ { "connector": "string", "connectorLabel": "string", "operation": "string", "operationLabel": "string", "description": "string", "settingsFields": [ { "name": "string", "label": "string", "required": true, "type": "text", "options": [ { "value": "string", "label": "string" } ], "secret": true, "placeholder": "string" } ], "inputFields": [ { "name": "string", "label": "string", "required": true, "type": "text", "options": [ { "value": "string", "label": "string" } ], "secret": true, "placeholder": "string" } ], "outputShape": { "label": "string", "fields": [ { "key": "string", "label": "string", "kind": "text", "shape": {}, "description": "string" } ] } } ]}{ "_tag": "ApiNotFound", "error": "not_found", "message": "That item does not exist, or this key cannot see it.", "status": 404}{ "_tag": "ApiNotFound", "error": "not_found", "message": "That item does not exist, or this key cannot see it.", "status": 404}Run a built-in item action on a workspace item
Runs one of the server-side item actions offered for a workspace item; today that is `save_as_template`, which snapshots the item and its descendants into a reusable workspace template. Requires read access to the item, and an action key that is not offered for that item (including the browser-only print action) is rejected with a validation error. Send an `Idempotency-Key` header to make retries safe; a replay within the window returns the original response.
List the workspace's actions
Returns the workspace's user-defined actions, newest first, excluding system-managed and archived ones and hiding any the caller may not view. Requires the `actions:read` permission in the workspace.