김인턴
APIReferenceDiscovery

Invoke a tool

`input` follows that tool's own input schema. `toolName`, `actor` and `context` come from the token and the descriptor, so a body that carries them is ignored.

POST
/tools/{name}/invoke

Authorization

memberToken
AuthorizationBearer <token>

Tokens

In: header

Path Parameters

name*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

text/plain

text/plain

text/plain

text/plain

curl -X POST "https://example.com/tools/string/invoke" \  -H "Content-Type: application/json" \  -d '{    "input": {}  }'
{  "toolName": "string",  "status": "string",  "content": "string",  "isError": true,  "message": "string",  "errorCode": "string",  "retryable": true,  "result": null}