v1

latestOpenAPI 3.0.02026-08-06132933.0 KB
Datasets

Retrieve an ingestion

Retrieves detailed information for an ingestion event, allowing you to check processing progress and outcomes.

get/v1/datasets/{datasetId}/ingestions/{ingestionId}

Path parameters

datasetIdstring uuid required

Unique identifier for the dataset.

Example:4e1219d8-7fa8-44b7-96c6-a8f2a9cfb0bf
ingestionIdstring uuid required

Unique identifier for the ingestion event.

Example:8bfba187-84f4-41e2-9dd3-bee4bb884205

Response

Successful response containing detailed information about the requested ingestion event.

requestIdstring

Unique identifier for the request.

statusstring

Indicates the status of the request.

ingestionIdstring uuid

Unique identifier for the ingestion event.

timestampstring

Example response

{
  "requestId": "b0eac937-c25c-47a5-bb7e-552f6b860458",
  "status": "success",
  "ingestionId": "8bfba187-84f4-41e2-9dd3-bee4bb884205",
  "timestamp": "2025-10-01T12:00:00.000000Z",
  "metrics": {
    "datasetMetrics": {
      "columnsCount": 20,
      "datasetSizeMB": 12.3456789,
      "totalDatasetRecordsCount": 500000
    },
    "ingestionMetrics": {
      "appendedRecordsCount": 100,
      "receivedRecordsCount": 100
    }
  }
}