v1

latestOpenAPI 3.0.02026-08-06132933.0 KB
Datasets

List ingestions

Retrieves a list of ingestions events that have been created for the specified dataset.

The returned ingestionId values can be used with the corresponding ingestion details endpoint to retrieve more information about a specific ingestion event.

get/v1/datasets/{datasetId}/ingestions

Path parameters

datasetIdstring uuid required

Unique identifier for the dataset.

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

Query parameters

pageinteger

The page number to retrieve. Pages are 1-indexed. Defaults to 1.

Example:1
pageSizeinteger

The maximum number of results to return per page. Defaults to 100.

Example:100

Response

Successful response containing a list of ingestion events for the specified dataset.

requestIdstring

Unique identifier for the request.

statusstring

Indicates the status of the request.

Example response

{
  "requestId": "b0eac937-c25c-47a5-bb7e-552f6b860458",
  "status": "success",
  "pagination": {
    "page": 1,
    "pageSize": 100,
    "totalItems": 1000
  },
  "ingestions": [
    {
      "ingestionId": "8bfba187-84f4-41e2-9dd3-bee4bb884205",
      "timestamp": "2025-10-01T12:00:00.000000Z",
      "status": "success"
    }
  ]
}