김인턴
APIReferenceCalendar

event_add

Create a calendar event with a concrete time range. Resolve natural-language dates and times before calling. Use event_update for an existing event. `workspace_write` · v2

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