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

Bulk

PreviousSeedsNextRetire

Was this helpful?

Bulk actions on seeds

post

Perform bulk actions on multiple seeds

Body
seedIdsstring · uuid[]Required
actionstring · enumRequiredPossible values:
testTypestring · enumOptional

The type of test to perform (Only valid for test action)

Possible values:
retiredAtstring · date-timeOptional

When the seed should be retired. Should be a UTC date in the future. If no input is provided it will default to UTC now. This operation will fail if the seed has already been retired. (Only valid for retire action)

descriptionstringOptional

An arbitrary user provided description for the seed. (Only valid for update action)

muteNotificationsUntilstring · date-timeOptional

The date until which notifications for events related to this seed will be muted. The date has to be in the future, otherwise the operation will result in an error (Only valid for update action)

Responses
200
OK
application/json
post
POST /api/seeds/bulk HTTP/1.1
Host: app.seedata.io
Content-Type: application/json
Accept: */*
Content-Length: 199

{
  "seedIds": [
    "123e4567-e89b-12d3-a456-426614174000"
  ],
  "action": "retire",
  "testType": "url",
  "retiredAt": "2025-06-01T00:30:32.076Z",
  "description": "text",
  "muteNotificationsUntil": "2025-06-01T00:30:32.076Z"
}
200

OK

{
  "seeds": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "type": "email",
      "contentType": "text",
      "contentKeywords": [
        "text"
      ],
      "slug": "yellow-jump-magic",
      "domain": "example.com",
      "description": "text",
      "plantedDescription": "text",
      "plantedLocation": "text",
      "plantedMethodId": "text",
      "muteNotificationsUntil": "2025-06-01T00:30:32.076Z",
      "status": "initialising",
      "locked": true,
      "eventCount": 1,
      "seedImpact": 1,
      "seedMetadata": {
        "md5SeededFileHash": "text",
        "locale": "text",
        "title": "text",
        "firstName": "text",
        "lastName": "text",
        "email": "text",
        "password": "text",
        "dob": "text",
        "company": "text",
        "phoneDialCode": "text",
        "phone": "text",
        "address": "text",
        "addressLine1": "text",
        "addressCity": "text",
        "addressCountry": "text",
        "addressZipCode": "text"
      },
      "plantedAt": "2025-06-01T00:30:32.076Z",
      "plantedByType": "text",
      "plantedById": "123e4567-e89b-12d3-a456-426614174000",
      "retiredAt": "2025-06-01T00:30:32.076Z",
      "retiredByType": "text",
      "retiredById": "123e4567-e89b-12d3-a456-426614174000",
      "createdByType": "text",
      "createdById": "123e4567-e89b-12d3-a456-426614174000",
      "createdAt": "2025-06-01T00:30:32.076Z",
      "downloadedByType": "text",
      "downloadedById": "123e4567-e89b-12d3-a456-426614174000",
      "downloadedAt": "2025-06-01T00:30:32.076Z",
      "deploymentId": "123e4567-e89b-12d3-a456-426614174000",
      "updatedAt": "2025-06-01T00:30:32.076Z",
      "externalIdentifier": "text"
    }
  ]
}