Sayr
ReferenceTasks

Create Timeline Event

POST
/me/timeline_event

Create a new timeline event for a task.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

taskId*string
orgId*string
type*string
id*string
name*string
data?
createdBy?|null

Response Body

application/json

application/json

curl -X POST "https://example.com/me/timeline_event" \  -H "Content-Type: application/json" \  -d '{    "taskId": "abc123",    "orgId": "abc123",    "type": "sidebar",    "id": "integrationId",    "name": "Integration Name",    "data": {}  }'
{  "success": true,  "data": {    "id": "string"  }}