For the complete documentation index, see llms.txt. This page is also available as Markdown.

Bulk Upload Events

List bulk upload events for current user

get

Retrieve a list of bulk upload events available to the authenticated user.

Responses
200

Bulk upload events

application/json
get/api/business_concepts/bulk_upload_event
GET /api/business_concepts/bulk_upload_event HTTP/1.1
Accept: */*
{
  "data": [
    {
      "file_hash": "abc123",
      "filename": "concepts.xlsx",
      "id": 1,
      "inserted_at": "2026-06-04T10:00:00Z",
      "message": "Upload successful",
      "node": null,
      "response": {
        "created": [
          1,
          2
        ],
        "errors": [
          5,
          6,
          8
        ],
        "updated": [
          3
        ]
      },
      "status": "COMPLETED",
      "task_reference": "task-456",
      "updated_at": "2026-06-04T10:00:00Z",
      "user_id": 987
    }
  ]
}

Last updated