List Record Activity

Read the full history of a single record — its comments and its actions (field changes, moves, assignments, status changes).


POST /v1/list-record-activity

Read the full history of a single record — its comments and its actions (field changes, moves, assignments, status changes). Use this to understand how a record reached its current state.

Request body

FieldTypeRequiredDescription
workspaceIdstringYesThe workspace ID the record belongs to
recordIdstringYesThe record ID
typeall | comments | actionsNoFilter to comments only, actions only, or all (default: all)
limitnumberNoMaximum items, max 24 (default: 20)
skipnumberNoOffset for pagination (default: 0)
{
  "workspaceId": "string",
  "recordId": "string",
  "type": "all",
  "limit": 0,
  "skip": 0
}

Response

{
  "items": [
    {
      "__typename": "string",
      "id": "string",
      "html": "string",
      "createdAt": "2024-01-01T00:00:00Z",
      "deletedAt": "2024-01-01T00:00:00Z",
      "commentUser": {
        "id": "string",
        "fullName": "string"
      },
      "type": "UPDATE_TITLE",
      "oldValue": "string",
      "newValue": "string",
      "automated": true,
      "actionUser": {
        "id": "string",
        "fullName": "string"
      },
      "affectedBy": {
        "id": "string",
        "fullName": "string"
      },
      "customField": {
        "id": "string",
        "name": "string"
      }
    }
  ],
  "totalCount": 0
}

Example

curl -X POST https://rest.blue.app/v1/list-record-activity \
  -H "Authorization: Bearer $BLUE_TOKEN" \
  -H "blue-org-id: $BLUE_ORG_ID" \
  -H "Content-Type: application/json" \
  -d '{"workspaceId":"string","recordId":"string","type":"all","limit":0,"skip":0}'