김인턴
APIReferenceTask

task_add

Create a new workspace task with typed task fields. Use this to add a todo or assignment for the requester or another team member. Do not use this to update an existing task — use task.update. `workspace_write` · v3

POST
/tools/task_add/invoke

Authorization

memberToken
AuthorizationBearer <token>

Tokens

In: header

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/task_add/invoke" \  -H "Content-Type: application/json" \  -d '{    "input": {      "title": "string"    }  }'
{  "toolName": "string",  "status": "string",  "content": "string",  "isError": true,  "message": "string",  "errorCode": "string",  "retryable": true,  "result": null}