Endpoints

Activities

Base URL: https://app.kinabase.com/api/v1/


get

activities/{collectionId}/{recordId}

Gets activities by collection and record IDs

Parameters

NameLocationTypeDescription
collectionId *pathstringCollection ID or Slug
recordId *pathstringRecord ID

Response

StatusDescriptionContent
200OK
Array of Activity
401Unauthorized
404Not Found

post

activities/{collectionId}/{recordId}

Adds a new activity

Parameters

NameLocationTypeDescription
collectionId *pathstringCollection ID or Slug
recordId *pathstringRecord ID

Request Body

Activity to add

Example request (application/json):
{
  "id": null,
  "content": "example-content",
  "type": null,
  "timestamp": null
}

Response

StatusDescriptionContent
200OK
400Bad Request
401Unauthorized
404Not Found