List Data Loads

get

[host-url]/dt-rest/v2/dataloads

Retrieves all data loads. This method supports various query parameters to filter and customize the response:
  • fields: specifies the fields to include in the response (comma-separated)
  • name: filters data flows by name

The following examples demonstrate the supported query patterns:

  • Retrieve all data loads (no filters):

    Retrieves all available data loads without any name or field-specific filtering.

    /dataloads

  • Retrieve all data loads with specific fields:

    Retrieves data loads, but only includes the specified fields for each data load.

    /dataloads?fields=name,dataLoadId,description,...

  • Filter by name only:

    Retrieves data loads that match a specific name.

    /dataloads?name=your_dataLoad_name

  • Filter by both name and fields:

    Retrieves data loads that match a specific name AND include specified fields.

    /dataloads?name=your_dataLoad_name&fields=name,dataLoadId,description,...

Request

Query Parameters
  • Comma-separated list of fields to include in the response. If not specified, all fields are included.
  • Name of the data load to retrieve. If specified, only the matching data load is returned.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

a Response object containing the requested list of data loads.
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : DataLoadBaseDTO
Type: object
Represents a base data load object, containing minimal attributes for data load operations.
Show Source

401 Response

Unauthorized

403 Response

Forbidden

404 Response

Not Found

409 Response

Conflict
Back to Top