Kaneo Logo
Activities

Create Activity

Create a new activity (system-generated event)

POST
/activity/create

Authorization

bearerAuth
AuthorizationBearer <token>

API Key authentication

In: header

Request Body

application/json

taskId*string
userId*string
message*string
type*string

Response Body

application/json

curl -X POST "https://cloud.kaneo.app/api/activity/create" \  -H "Content-Type: application/json" \  -d '{    "taskId": "string",    "userId": "string",    "message": "string",    "type": "string"  }'
{
  "id": "string",
  "taskId": "string",
  "type": "comment",
  "createdAt": null,
  "userId": "string",
  "content": "string",
  "externalUserName": "string",
  "externalUserAvatar": "string",
  "externalSource": "string",
  "externalUrl": "string"
}