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. Copilot

Assessment

PreviousCopilotNextData widgets

Was this helpful?

Create a Copilot assessment

post

Create the Copilot assessment for the organisation

Body

Copilot Assessment model

idstring · uuidRead-onlyOptional
organisationIdstring · uuidRead-onlyOptional
createdAtstring · date-timeRead-onlyOptional
updatedAtstring · date-timeRead-onlyOptional
createdByTypestringRead-onlyOptional
createdByIdstringRead-onlyOptional
updatedByTypestring | nullableRead-onlyOptional
updatedByIdstring | nullableRead-onlyOptional
Responses
200
OK
application/json
post
POST /api/copilot/assessment HTTP/1.1
Host: app.seedata.io
Content-Type: application/json
Accept: */*
Content-Length: 89

{
  "questions": [
    {
      "questionKey": "text"
    }
  ],
  "answers": [
    {
      "questionKey": "text",
      "answer": "text"
    }
  ]
}
200

OK

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "questions": [
    {
      "questionKey": "text"
    }
  ],
  "answers": [
    {
      "questionKey": "text",
      "answer": "text"
    }
  ],
  "organisationId": "123e4567-e89b-12d3-a456-426614174000",
  "createdAt": "2025-05-12T20:33:40.067Z",
  "updatedAt": "2025-05-12T20:33:40.067Z",
  "createdByType": "text",
  "createdById": "text",
  "updatedByType": "text",
  "updatedById": "text"
}