Skip to main content
POST
/
workflows
/
{workflow_id}
/
nodes
/
{node_id}
/
tools
Attach Tool To Node
curl --request POST \
  --url https://api.example.com/workflows/{workflow_id}/nodes/{node_id}/tools \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "instance_name": "<string>",
  "parameters": {}
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workflow_id
string<uuid>
required
node_id
string
required

Query Parameters

agent_id
string<uuid> | null

Body

application/json

Body for POST /workflows/{wf}/nodes/{node}/tools.

instance_name
string
required
Required string length: 1 - 120
parameters
Parameters · object

Response

Successful Response