seedata.io DOCS
  • Welcome
  • Getting Started
    • What is seedata.io?
    • Core Concepts
    • Quick Start
    • Get Help
    • Subscriptions
  • Features
    • Dashboard
    • Alerts
    • Integrations
      • AWS
      • Webhook
    • Deployments
    • Seeds
      • Email
      • URL
      • Person
      • Microsoft Document (XLSX, DOCX)
      • PDF Document
      • HTML Page
      • SVG Image
      • AWS Credential
      • Virtual Machine Honeypot
      • EC2 Honeypot
    • Events
    • Intel
    • Settings
      • Whitelists
      • Users & Tokens
      • Profiles
  • Tutorials
    • Managing your alerts
      • Webhook
      • Webforms
      • Teams
      • Syslog
      • Slack
      • ServiceNow
      • Jira
      • Email
      • Elasticsearch
      • Datadog
    • Registering for a new account
    • Planting a VM honeypot seed
    • Preparing a VM Honeypot host
    • Planting an EC2 honeypot seed
    • Planting AWS Serverless Seeds
  • API reference
    • Activities
    • Api tokens
    • Copilot
      • Assessment
    • Data widgets
    • Deployments
    • Events
      • Next
      • Previous
      • Alert
      • Journal
    • Integrations
    • Intel
    • Notification recipients
      • Test
    • Seeds
      • Bulk
      • Retire
      • Test
      • Next
      • Previous
    • Stats
    • Whitelisted sources
Powered by GitBook
On this page

Was this helpful?

  1. API reference
  2. Events

Journal

PreviousAlertNextIntegrations

Was this helpful?

Get a journal entry for an event

get

An authenticated user retrieves a single journal entry for the specified event

Path parameters
eventIdstring · uuidRequired
journalIdstring · uuidRequired
Responses
200
OK
application/json
get
GET /api/events/{eventId}/journal/{journalId} HTTP/1.1
Host: app.seedata.io
Accept: */*
200

OK

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "type": "creation",
  "message": "text",
  "priority": 1,
  "eventId": "123e4567-e89b-12d3-a456-426614174000",
  "createdByType": "text",
  "createdById": "text",
  "updatedAt": "2025-05-12T22:00:42.081Z",
  "createdAt": "2025-05-12T22:00:42.081Z"
}
  • GETGet list of journal entries for an event
  • POSTCreate a review journal entry for an event
  • GETGet a journal entry for an event

Get list of journal entries for an event

get

An authenticated user retrieves the list of journal entries for the specified event

Path parameters
eventIdstring · uuidRequired
Query parameters
typestringOptional

Filter results by supported journal entry type

offsetintegerOptional

Pagination offset

limitinteger · min: 1 · max: 100Optional

Pagination limit

orderBystringOptional

Order the results by this field, in this direction

Example: createdAt:descPattern: ^[a-zA-Z0-9\_]+(:(asc|desc))?$
Responses
200
OK
application/json
get
GET /api/events/{eventId}/journal HTTP/1.1
Host: app.seedata.io
Accept: */*
200

OK

{
  "metadata": {
    "totalCount": 1,
    "offset": 1,
    "limit": 1
  },
  "items": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "type": "creation",
      "message": "text",
      "priority": 1,
      "eventId": "123e4567-e89b-12d3-a456-426614174000",
      "createdByType": "text",
      "createdById": "text",
      "updatedAt": "2025-05-12T22:00:42.081Z",
      "createdAt": "2025-05-12T22:00:42.081Z"
    }
  ]
}

Create a review journal entry for an event

post

Create a single journal entry of type review

Path parameters
eventIdstring · uuidRequired
Body

Journal entries of a seed's event

idstring · uuidRead-onlyOptional
typestring · enumRead-onlyOptional

The type of the journal entry

Possible values:
messagestringRequired

A freeform message explaining why this status was chosen

prioritynumber · min: 1 · max: 5Required

The event priority

eventIdstring · uuidRead-onlyOptional

ID of the event this journal entry relates to

createdByTypestringRead-onlyOptional
createdByIdstringRead-onlyOptional
updatedAtstring · date-timeRead-onlyOptional
createdAtstring · date-timeRead-onlyOptional
Responses
201
Created
application/json
post
POST /api/events/{eventId}/journal HTTP/1.1
Host: app.seedata.io
Content-Type: application/json
Accept: */*
Content-Length: 31

{
  "message": "text",
  "priority": 1
}
201

Created

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "type": "creation",
  "message": "text",
  "priority": 1,
  "eventId": "123e4567-e89b-12d3-a456-426614174000",
  "createdByType": "text",
  "createdById": "text",
  "updatedAt": "2025-05-12T22:00:42.081Z",
  "createdAt": "2025-05-12T22:00:42.081Z"
}